cmna (version 1.0.3)

revolution-solid: Volumes of solids of revolution

Description

Find the volume of a solid of revolution

Usage

shellmethod(f, a, b)

discmethod(f, a, b)

Arguments

f

function of revolution

a

lower-bound of the solid

b

upper-bound of the solid

Value

the volume of the solid

Details

The functions discmethod and shellmethod implement the algorithms for finding the volume of solids of revolution. The discmethod function is suitable for volumes revolved around the x-axis and the shellmethod function is suitable for volumes revolved around the y-axis.

See Also

Other integration: adaptint(), gaussint(), giniquintile(), mcint(), midpt(), romberg(), simp38(), simp(), trap()

Examples

Run this code
# NOT RUN {
f <- function(x) { x^2 }
shellmethod(f, 1, 2)
discmethod(f, 1, 2)

# }

Run the code above in your browser using DataLab