Finding volume of a region in Multi-Variable Calculus The Next CEO of Stack OverflowSingle variable integral to polar coordinates?Finding a volumeVolume under hyperbolic paraboloid, above unit diskbasic question - Volume of revolution of weird shapeFinding the volume of the following solid using triple integralsVolume Integration of Bounded RegionFind the volume of the solid region given some constraints.Non translation polar Limits of integration for volume of cylinder not centered at originfinding volume bound by cylinder, cone, and xy planefind volume using double integral
Find non-case sensitive string in a mixed list of elements?
If Nick Fury and Coulson already knew about aliens (Kree and Skrull) why did they wait until Thor's appearance to start making weapons?
Is it possible to replace duplicates of a character with one character using tr
When you upcast Blindness/Deafness, do all targets suffer the same effect?
What happened in Rome, when the western empire "fell"?
Where does this common spurious transmission come from? Is there a quality difference?
Why is information "lost" when it got into a black hole?
Why do airplanes bank sharply to the right after air-to-air refueling?
Is it ever safe to open a suspicious HTML file (e.g. email attachment)?
Why isn't the Mueller report being released completely and unredacted?
Why is my new battery behaving weirdly?
Is a distribution that is normal, but highly skewed considered Gaussian?
Is it convenient to ask the journal's editor for two additional days to complete a review?
Can MTA send mail via a relay without being told so?
Is it professional to write unrelated content in an almost-empty email?
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
Why don't programming languages automatically manage the synchronous/asynchronous problem?
Is it possible to use a NPN BJT as switch, from single power source?
Make solar eclipses exceedingly rare, but still have new moons
How to check if all elements of 1 list are in the *same quantity* and in any order, in the list2?
Is there always a complete, orthogonal set of unitary matrices?
I want to delete every two lines after 3rd lines in file contain very large number of lines :
Is there a difference between "Fahrstuhl" and "Aufzug"
Help understanding this unsettling image of Titan, Epimetheus, and Saturn's rings?
Finding volume of a region in Multi-Variable Calculus
The Next CEO of Stack OverflowSingle variable integral to polar coordinates?Finding a volumeVolume under hyperbolic paraboloid, above unit diskbasic question - Volume of revolution of weird shapeFinding the volume of the following solid using triple integralsVolume Integration of Bounded RegionFind the volume of the solid region given some constraints.Non translation polar Limits of integration for volume of cylinder not centered at originfinding volume bound by cylinder, cone, and xy planefind volume using double integral
$begingroup$
I converted both functions into polar form and got $z = r$ and $z = r^2 - rcostheta$. So I get the integrands as $[r^2]drdtheta$ and $[r^3 - r^2 costheta] drdtheta$ but now I'm having difficulty visualizing the shapes and setting the bounds on $r$ and $theta$. I assume $theta$ is from $0$ to $2π$ (correct me if I'm wrong) - but I still don't completely understand why this is the case. Also, I'm having trouble setting up $r$ bounds. When I choose $0<r<2$ I get a different volume for the cylinder than $2<r<4$ and none of them equal $$V= pi r^2h= 4pi(4) = 16pi.$$ Any help is appreciated. Thanks.
integration multivariable-calculus
$endgroup$
add a comment |
$begingroup$
I converted both functions into polar form and got $z = r$ and $z = r^2 - rcostheta$. So I get the integrands as $[r^2]drdtheta$ and $[r^3 - r^2 costheta] drdtheta$ but now I'm having difficulty visualizing the shapes and setting the bounds on $r$ and $theta$. I assume $theta$ is from $0$ to $2π$ (correct me if I'm wrong) - but I still don't completely understand why this is the case. Also, I'm having trouble setting up $r$ bounds. When I choose $0<r<2$ I get a different volume for the cylinder than $2<r<4$ and none of them equal $$V= pi r^2h= 4pi(4) = 16pi.$$ Any help is appreciated. Thanks.
integration multivariable-calculus
$endgroup$
add a comment |
$begingroup$
I converted both functions into polar form and got $z = r$ and $z = r^2 - rcostheta$. So I get the integrands as $[r^2]drdtheta$ and $[r^3 - r^2 costheta] drdtheta$ but now I'm having difficulty visualizing the shapes and setting the bounds on $r$ and $theta$. I assume $theta$ is from $0$ to $2π$ (correct me if I'm wrong) - but I still don't completely understand why this is the case. Also, I'm having trouble setting up $r$ bounds. When I choose $0<r<2$ I get a different volume for the cylinder than $2<r<4$ and none of them equal $$V= pi r^2h= 4pi(4) = 16pi.$$ Any help is appreciated. Thanks.
integration multivariable-calculus
$endgroup$
I converted both functions into polar form and got $z = r$ and $z = r^2 - rcostheta$. So I get the integrands as $[r^2]drdtheta$ and $[r^3 - r^2 costheta] drdtheta$ but now I'm having difficulty visualizing the shapes and setting the bounds on $r$ and $theta$. I assume $theta$ is from $0$ to $2π$ (correct me if I'm wrong) - but I still don't completely understand why this is the case. Also, I'm having trouble setting up $r$ bounds. When I choose $0<r<2$ I get a different volume for the cylinder than $2<r<4$ and none of them equal $$V= pi r^2h= 4pi(4) = 16pi.$$ Any help is appreciated. Thanks.
integration multivariable-calculus
integration multivariable-calculus
edited Mar 27 at 20:09
Gerschgorin
7810
7810
asked Mar 27 at 19:37
krauser126krauser126
636
636
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
First - no, that's not the correct equation for the cylinder. There's no $z$ in the cylinder's equation; it should be $(rcostheta-2)^2+(rsintheta)^2 = 4$, or $r^2-4rcostheta = 0$. We're interested in the inside, which would be $r^2-4rcostheta le 0$. The other two bounding surfaces are $z=r$ as you found and $z=0$, for $0le zle r$.
Second - no, $theta$ is not from zero to $2pi$. Look at the picture; the cylinder is entirely on one side of the $y$ axis. That's only half of the angle range around the origin, for $theta$ between $-fracpi2$ and $fracpi2$.
Putting these pieces together, the integral becomes
$$V = int_-pi/2^pi/2int_?^? (r-0)cdot r,dr,dtheta$$
Yeah, we still need those $r$ bounds. That comes from the cylinder. Solving $r^2le 4rcostheta$ for $r$, we get (since $r$ is always nonnegative) that $0le rle 4costheta$. Now we finally have the integral completely set up:
$$V = int_-pi/2^pi/2int_0^4costheta rcdot r,dr,dtheta$$
Can you take it from there?
$endgroup$
$begingroup$
Thanks, that makes sense. I solved the equation for the cylinder up to the point of [cylinder function] = 0 but I mistakenly substituted z instead for 0 after that. Regarding the r bounds, why isn't it just 0 to 2 or 2 to 4 since the base of the cylinder is a circle so r should go from center to outer edge of the base?
$endgroup$
– krauser126
Mar 27 at 20:16
1
$begingroup$
The base of the cylinder is a circle, but it's not a circle centered at the origin of the coordinate system we're using. An equation "$r=c$" represents a circle centered at the origin, and the equation of a circle centered elsewhere looks different in polar coordinates. This is at least the second nicest case, a circle that passes through the origin.
$endgroup$
– jmerry
Mar 27 at 20:19
add a comment |
$begingroup$
Why use (shifted) radial coordinates when rectilinear are so easy?
$$intlimits_x=0^4 intlimits_y = -sqrt4-(x-2)^2^sqrt4-(x-2)^2 intlimits_z=0^sqrtx^2 + y^2 1 dx dy dz = frac2569 neq 16 pi.$$
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3165019%2ffinding-volume-of-a-region-in-multi-variable-calculus%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
First - no, that's not the correct equation for the cylinder. There's no $z$ in the cylinder's equation; it should be $(rcostheta-2)^2+(rsintheta)^2 = 4$, or $r^2-4rcostheta = 0$. We're interested in the inside, which would be $r^2-4rcostheta le 0$. The other two bounding surfaces are $z=r$ as you found and $z=0$, for $0le zle r$.
Second - no, $theta$ is not from zero to $2pi$. Look at the picture; the cylinder is entirely on one side of the $y$ axis. That's only half of the angle range around the origin, for $theta$ between $-fracpi2$ and $fracpi2$.
Putting these pieces together, the integral becomes
$$V = int_-pi/2^pi/2int_?^? (r-0)cdot r,dr,dtheta$$
Yeah, we still need those $r$ bounds. That comes from the cylinder. Solving $r^2le 4rcostheta$ for $r$, we get (since $r$ is always nonnegative) that $0le rle 4costheta$. Now we finally have the integral completely set up:
$$V = int_-pi/2^pi/2int_0^4costheta rcdot r,dr,dtheta$$
Can you take it from there?
$endgroup$
$begingroup$
Thanks, that makes sense. I solved the equation for the cylinder up to the point of [cylinder function] = 0 but I mistakenly substituted z instead for 0 after that. Regarding the r bounds, why isn't it just 0 to 2 or 2 to 4 since the base of the cylinder is a circle so r should go from center to outer edge of the base?
$endgroup$
– krauser126
Mar 27 at 20:16
1
$begingroup$
The base of the cylinder is a circle, but it's not a circle centered at the origin of the coordinate system we're using. An equation "$r=c$" represents a circle centered at the origin, and the equation of a circle centered elsewhere looks different in polar coordinates. This is at least the second nicest case, a circle that passes through the origin.
$endgroup$
– jmerry
Mar 27 at 20:19
add a comment |
$begingroup$
First - no, that's not the correct equation for the cylinder. There's no $z$ in the cylinder's equation; it should be $(rcostheta-2)^2+(rsintheta)^2 = 4$, or $r^2-4rcostheta = 0$. We're interested in the inside, which would be $r^2-4rcostheta le 0$. The other two bounding surfaces are $z=r$ as you found and $z=0$, for $0le zle r$.
Second - no, $theta$ is not from zero to $2pi$. Look at the picture; the cylinder is entirely on one side of the $y$ axis. That's only half of the angle range around the origin, for $theta$ between $-fracpi2$ and $fracpi2$.
Putting these pieces together, the integral becomes
$$V = int_-pi/2^pi/2int_?^? (r-0)cdot r,dr,dtheta$$
Yeah, we still need those $r$ bounds. That comes from the cylinder. Solving $r^2le 4rcostheta$ for $r$, we get (since $r$ is always nonnegative) that $0le rle 4costheta$. Now we finally have the integral completely set up:
$$V = int_-pi/2^pi/2int_0^4costheta rcdot r,dr,dtheta$$
Can you take it from there?
$endgroup$
$begingroup$
Thanks, that makes sense. I solved the equation for the cylinder up to the point of [cylinder function] = 0 but I mistakenly substituted z instead for 0 after that. Regarding the r bounds, why isn't it just 0 to 2 or 2 to 4 since the base of the cylinder is a circle so r should go from center to outer edge of the base?
$endgroup$
– krauser126
Mar 27 at 20:16
1
$begingroup$
The base of the cylinder is a circle, but it's not a circle centered at the origin of the coordinate system we're using. An equation "$r=c$" represents a circle centered at the origin, and the equation of a circle centered elsewhere looks different in polar coordinates. This is at least the second nicest case, a circle that passes through the origin.
$endgroup$
– jmerry
Mar 27 at 20:19
add a comment |
$begingroup$
First - no, that's not the correct equation for the cylinder. There's no $z$ in the cylinder's equation; it should be $(rcostheta-2)^2+(rsintheta)^2 = 4$, or $r^2-4rcostheta = 0$. We're interested in the inside, which would be $r^2-4rcostheta le 0$. The other two bounding surfaces are $z=r$ as you found and $z=0$, for $0le zle r$.
Second - no, $theta$ is not from zero to $2pi$. Look at the picture; the cylinder is entirely on one side of the $y$ axis. That's only half of the angle range around the origin, for $theta$ between $-fracpi2$ and $fracpi2$.
Putting these pieces together, the integral becomes
$$V = int_-pi/2^pi/2int_?^? (r-0)cdot r,dr,dtheta$$
Yeah, we still need those $r$ bounds. That comes from the cylinder. Solving $r^2le 4rcostheta$ for $r$, we get (since $r$ is always nonnegative) that $0le rle 4costheta$. Now we finally have the integral completely set up:
$$V = int_-pi/2^pi/2int_0^4costheta rcdot r,dr,dtheta$$
Can you take it from there?
$endgroup$
First - no, that's not the correct equation for the cylinder. There's no $z$ in the cylinder's equation; it should be $(rcostheta-2)^2+(rsintheta)^2 = 4$, or $r^2-4rcostheta = 0$. We're interested in the inside, which would be $r^2-4rcostheta le 0$. The other two bounding surfaces are $z=r$ as you found and $z=0$, for $0le zle r$.
Second - no, $theta$ is not from zero to $2pi$. Look at the picture; the cylinder is entirely on one side of the $y$ axis. That's only half of the angle range around the origin, for $theta$ between $-fracpi2$ and $fracpi2$.
Putting these pieces together, the integral becomes
$$V = int_-pi/2^pi/2int_?^? (r-0)cdot r,dr,dtheta$$
Yeah, we still need those $r$ bounds. That comes from the cylinder. Solving $r^2le 4rcostheta$ for $r$, we get (since $r$ is always nonnegative) that $0le rle 4costheta$. Now we finally have the integral completely set up:
$$V = int_-pi/2^pi/2int_0^4costheta rcdot r,dr,dtheta$$
Can you take it from there?
answered Mar 27 at 19:51
jmerryjmerry
16.9k11633
16.9k11633
$begingroup$
Thanks, that makes sense. I solved the equation for the cylinder up to the point of [cylinder function] = 0 but I mistakenly substituted z instead for 0 after that. Regarding the r bounds, why isn't it just 0 to 2 or 2 to 4 since the base of the cylinder is a circle so r should go from center to outer edge of the base?
$endgroup$
– krauser126
Mar 27 at 20:16
1
$begingroup$
The base of the cylinder is a circle, but it's not a circle centered at the origin of the coordinate system we're using. An equation "$r=c$" represents a circle centered at the origin, and the equation of a circle centered elsewhere looks different in polar coordinates. This is at least the second nicest case, a circle that passes through the origin.
$endgroup$
– jmerry
Mar 27 at 20:19
add a comment |
$begingroup$
Thanks, that makes sense. I solved the equation for the cylinder up to the point of [cylinder function] = 0 but I mistakenly substituted z instead for 0 after that. Regarding the r bounds, why isn't it just 0 to 2 or 2 to 4 since the base of the cylinder is a circle so r should go from center to outer edge of the base?
$endgroup$
– krauser126
Mar 27 at 20:16
1
$begingroup$
The base of the cylinder is a circle, but it's not a circle centered at the origin of the coordinate system we're using. An equation "$r=c$" represents a circle centered at the origin, and the equation of a circle centered elsewhere looks different in polar coordinates. This is at least the second nicest case, a circle that passes through the origin.
$endgroup$
– jmerry
Mar 27 at 20:19
$begingroup$
Thanks, that makes sense. I solved the equation for the cylinder up to the point of [cylinder function] = 0 but I mistakenly substituted z instead for 0 after that. Regarding the r bounds, why isn't it just 0 to 2 or 2 to 4 since the base of the cylinder is a circle so r should go from center to outer edge of the base?
$endgroup$
– krauser126
Mar 27 at 20:16
$begingroup$
Thanks, that makes sense. I solved the equation for the cylinder up to the point of [cylinder function] = 0 but I mistakenly substituted z instead for 0 after that. Regarding the r bounds, why isn't it just 0 to 2 or 2 to 4 since the base of the cylinder is a circle so r should go from center to outer edge of the base?
$endgroup$
– krauser126
Mar 27 at 20:16
1
1
$begingroup$
The base of the cylinder is a circle, but it's not a circle centered at the origin of the coordinate system we're using. An equation "$r=c$" represents a circle centered at the origin, and the equation of a circle centered elsewhere looks different in polar coordinates. This is at least the second nicest case, a circle that passes through the origin.
$endgroup$
– jmerry
Mar 27 at 20:19
$begingroup$
The base of the cylinder is a circle, but it's not a circle centered at the origin of the coordinate system we're using. An equation "$r=c$" represents a circle centered at the origin, and the equation of a circle centered elsewhere looks different in polar coordinates. This is at least the second nicest case, a circle that passes through the origin.
$endgroup$
– jmerry
Mar 27 at 20:19
add a comment |
$begingroup$
Why use (shifted) radial coordinates when rectilinear are so easy?
$$intlimits_x=0^4 intlimits_y = -sqrt4-(x-2)^2^sqrt4-(x-2)^2 intlimits_z=0^sqrtx^2 + y^2 1 dx dy dz = frac2569 neq 16 pi.$$
$endgroup$
add a comment |
$begingroup$
Why use (shifted) radial coordinates when rectilinear are so easy?
$$intlimits_x=0^4 intlimits_y = -sqrt4-(x-2)^2^sqrt4-(x-2)^2 intlimits_z=0^sqrtx^2 + y^2 1 dx dy dz = frac2569 neq 16 pi.$$
$endgroup$
add a comment |
$begingroup$
Why use (shifted) radial coordinates when rectilinear are so easy?
$$intlimits_x=0^4 intlimits_y = -sqrt4-(x-2)^2^sqrt4-(x-2)^2 intlimits_z=0^sqrtx^2 + y^2 1 dx dy dz = frac2569 neq 16 pi.$$
$endgroup$
Why use (shifted) radial coordinates when rectilinear are so easy?
$$intlimits_x=0^4 intlimits_y = -sqrt4-(x-2)^2^sqrt4-(x-2)^2 intlimits_z=0^sqrtx^2 + y^2 1 dx dy dz = frac2569 neq 16 pi.$$
edited Mar 27 at 23:39
answered Mar 27 at 20:11
David G. StorkDavid G. Stork
11.5k41533
11.5k41533
add a comment |
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3165019%2ffinding-volume-of-a-region-in-multi-variable-calculus%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown