Description Usage Arguments Details Value See Also Examples
Find the volume of a solid of revolution
1 2 3 | shellmethod(f, a, b)
discmethod(f, a, b)
|
f |
function of revolution |
a |
lower-bound of the solid |
b |
upper-bound of the solid |
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.
the volume of the solid
Other integration:
adaptint(),
gaussint(),
giniquintile(),
mcint(),
midpt(),
romberg(),
simp38(),
simp(),
trap()
1 2 3 | f <- function(x) { x^2 }
shellmethod(f, 1, 2)
discmethod(f, 1, 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.