Calculating the tangent plane to a surface.

1.1k Views Asked by At

I have parametrized the surface of a 3d-cardioid. The parametrization is:

$$x(t,s)=(1+\cos(t))\cos(t) $$ $$y(t,s)=(1+\cos(t))\sin(t)\cos(s)$$ $$z(t,s)=(1+\cos(t))\sin(t)\sin(s)$$

Now I want to calculate the equation of the tangent plane in $(s,t)=(\frac{1}{2}(1+\sqrt{2}),\frac{1}{2}(1+\sqrt{2}))$.

I think a correct method would be calculating the vectors $$\frac{\partial}{\partial s}(x(s,t)i+y(s,t)j+z(s,t)k)$$ $$\frac{\partial}{\partial t}(x(s,t)i+y(s,t)j+z(s,t)k)$$

Now the cross product of these two vectors will be the normal vector of the tangent plane to the surface. Finally plugging the values of $(\frac{1}{2}(1+\sqrt{2}),\frac{1}{2}(1+\sqrt{2}))$ into the parametric equations I will have the tangent point.

Is this method correct? Is there another method to calculate the tangent plane? Calculating the cross vector in this case is very tedious.

2

There are 2 best solutions below

0
On BEST ANSWER

You could try converting the parametric equations into an implicit equation for the surface and then computing that function’s gradient, but since you’re working with a surface of revolution, it might be easier to compute the normal for the original plane curve and then rotate it into place.

This surface is generated by rotating the cardioid $x(t)=(1+\cos t)\cos t$, $y(t)=(1+\cos t)\sin t$, $z=0$ about the $x$-axis. This rotation is represented by the parameter $s$, and this curve corresponds to $s=0$. A normal to this curve is $$\left( {\partial y\over\partial t}, -{\partial x\over\partial t}, 0 \right) = \left( \cos t+\cos 2t, \sin t+\sin 2t, 0 \right).$$ When the curve is rotated, it drags its normals along with it, so to find the normal at any point on the surface, we need only rotate this normal through an angle of $s$: $$\begin{bmatrix}1&0&0 \\ 0&\cos s&-\sin s\\0&\sin s&\cos s\end{bmatrix} \begin{bmatrix} \cos t+\cos 2t \\ \sin t+\sin 2t \\ 0 \end{bmatrix} = \begin{bmatrix} \cos t+\cos 2t \\ (\sin t+\sin 2t)\cos s \\ (\sin t+\sin 2t)\sin s \end{bmatrix}.$$ The equation of the tangent plane can then be found in the usual ways. It is approximately $$0.391195x+0.568984y+1.49488z=1.83799$$

enter image description here

0
On

You have $$ x^2 + y^2 + z^2 = (1+\cos t)^2 $$ $$ \frac{x^2}{x^2 + y^2 + z^2} = \cos^2 t $$

Therefore $$ \sqrt{x^2 + y^2 + z^2} = 1 + \frac{x}{\sqrt{x^2+y^2+z^2}} $$ $$ x^2+y^2+z^2 - \sqrt{x^2+y^2+z^2} - x= 0 $$

Let $$ F(x,y,z) = x^2+y^2+z^2 - \sqrt{x^2+y^2+z^2} - x $$

Then $$ \frac{\partial F}{\partial x} = 2x - \frac{x}{\sqrt{x^2+y^2+z^2}}-1 $$ $$ \frac{\partial F}{\partial y} = 2y - \frac{y}{\sqrt{x^2+y^2+z^2}} $$ $$ \frac{\partial F}{\partial z} = 2z - \frac{z}{\sqrt{x^2+y^2+z^2}} $$

You can now compute $\nabla F$ for the corresponding $(x,y,z)$