lucky_luke
New member
- Joined
- Apr 6, 2006
- Messages
- 7
hi
Find volume of a body that we get by rotating space between graphs f(x) = -x^2 + 2 and
g(x) = |x| about x-axis.
My method is by finding volume V1 of space under graph f(x), then finding volume V2 of space under graph g(x), then substracting V = V1 - V2.
But the following method
combines steps 1) and 3). Why is that allowed?
When computing it my way, I can visualise the process. First I draw in my mind shape of first rotated body, for which we find volume V1, then I similary find V2, then I can in my mind visually substract shape of first object from second one to get the final shape of the body.
And I do similar thing on paper, only using formulas.
But when using
we skip intermediate steps and thus I have no idea how to visuallise this.
Also, I know final result is the same, but why?
My way we substracted volumes of two bodies, but what body shapes do we substract here :
?
thank you
Find volume of a body that we get by rotating space between graphs f(x) = -x^2 + 2 and
g(x) = |x| about x-axis.
My method is by finding volume V1 of space under graph f(x), then finding volume V2 of space under graph g(x), then substracting V = V1 - V2.
Code:
1)U1(x) = PI*{int}[0,1] (-x^2 + 2)^2)*dx
2)V1 = U(1) - U(0)
Code:
3)U2(x) = PI*{int}[0,1] (|x|)^2 * dx
4)V2 = U2(1) - U2(2)
Code:
V = V2 - V1
But the following method
Code:
2*PI*{int}[0,1] ( (-x^2 + 2)^2 - x^2 ) * dx
combines steps 1) and 3). Why is that allowed?
When computing it my way, I can visualise the process. First I draw in my mind shape of first rotated body, for which we find volume V1, then I similary find V2, then I can in my mind visually substract shape of first object from second one to get the final shape of the body.
And I do similar thing on paper, only using formulas.
But when using
Code:
2*PI*{int}[0,1] ( (-x^2 + 2)^2 - x^2 ) * dx
we skip intermediate steps and thus I have no idea how to visuallise this.
Also, I know final result is the same, but why?
My way we substracted volumes of two bodies, but what body shapes do we substract here :
Code:
U1 ... value of antiderivative 2*PI*{int}[0,1] ( (-x^2 + 2)^2 - x^2 ) * dx
at point 1
Code:
U2 ... value of antiderivative 2*PI*{int}[0,1] ( (-x^2 + 2)^2 - x^2 ) * dx
at point 0
Code:
U1 - U0 = V
?
thank you