[Math] How to calculate line integral over the intersection of paraboloid $z=x^2+y^2$ and plane $z=2x$

integrationmultivariable-calculusproof-verificationstokes-theorem

Calculate $\oint_C xyz\,dx+x^2\,dy+xz\,dz$ over the curve from the intersection of paraboloid $z=x^2+y^2$ and plane $z=2x$. The direction of the curve may be chosen as you see fit.

It looks like if we chose to parametrize the curve and plug in the appropriate values straight into the integral, the calculation would be become pretty massive.

I'd like to try this with Stokes' theorem.

My main question is whether we're allowed to choose any surface when using Stokes' because here we have 2: paraboloid and plane, of which plane is of course much easier.

Then the normal unit vector for the plane in the negative direction is:
$$
n=\langle2,0,1\rangle/dS
$$
The vector field is:
$$
F=\langle xyz, x^2,xz\rangle
$$
and
$$
\operatorname{curl}F=\langle 0,xy-z,2x-xz\rangle
$$
We can get the ranges for the curve:
$$
x^2+y^2=2x\iff(x-1)^2+y^2=1\\
\implies0\le r\le 2\cos\theta, \quad-\pi/2\le\theta\le\pi/2
$$

Then:
$$
\oint_CF\cdot dr=\iint_S \operatorname{curl}F\cdot ndS=\\
=\iint_S 2x-xz\stackrel{z=2x}{=}\iint_S 2x-2x^2=\int_{-\pi/2}^{\pi/2}\int_0^{2\cos\theta} (2r\cos\theta-2r^2\cos^2\theta)r
$$
So my question is mostly if I can choose any surface when using Stokes' and whether my ranges are correct?

Best Answer

I'll start with some critique. First of all, your normal vector isn't quite correct: from the equation of the plane $-2x+z=0$, we get the normal vector $\mathbf{n}=\langle-2,0,1\rangle$ (or it could be its opposite, but this one gives the upward orientation, consistent with the counterclockwise orientation of the curve $C$). Fortunately, it doesn't affect your solution because the first component of curl is zero.

Second, it is a really bad habit to drop differentials, representing the variables of integration, from integral notation! For example, the last line of your computation should be written as $$\iint_S (2x-xz)\,dx\,dy=\iint_S (2x-2x^2)\,dx\,dy=\int_{-\pi/2}^{\pi/2}\int_0^{2\cos\theta} (2r\cos\theta-2r^2\cos^2\theta)r\,dr\,d\theta.$$

Third, you must be much more clear regarding domains of integration. The "equality" $$\iint_S \operatorname{curl}F\cdot\mathbf{n}\,dS=\iint_S (2x-2x^2)\,dx\,dy$$ is wrong because the domains of integration in these two integrals are NOT the same and thus cannot be denoted by the same letter $\color{red}{S}$. If $S$ stands for the portion of the plane cut out by the paraboloid (or cylinder), then it's rightfully used in the first integral, but not in the second. The second one represents a double integral over a region $D$ in the $xy$-plane after you effectively parameterized the surface $S$. And this region $D$ is the disk $(x-1)^2+y^2=1$, that you correctly found. And to integrate over this $D$, it certainly makes sense to switch to polar coordinates.

In the end of the day, you did get a correct double integral in polar coordinates (also see above), so you can finish solving this problem by evaluating that integral. (I presume you can do that, and you don't need us to give you the answer.)

Now, a very short main answer to your main question: YES, we are allowed to choose any such surface. :-)

Related Question