4.4.30Multivariable Calculus

Parametric surfaces — tangent planes, surface area

1,852 words8 min readdifficulty · medium

A surface in 3D is a "rubber sheet" living in space. To describe it cleanly we paint it with two coordinates (u,v)(u,v). Once we have that map, tangent planes and area fall out of cross products.

1. What is a parametric surface?

WHY two parameters? A surface is intrinsically 2-dimensional — you can wander in two independent directions on it. Curves need 1 parameter (r(t)\mathbf r(t)); surfaces need 2.

Figure — Parametric surfaces — tangent planes, surface area

2. The two fundamental tangent vectors

Differentiate r\mathbf r with respect to each parameter, holding the other fixed:

ru=ru=xu,yu,zu,rv=rv=xv,yv,zv\mathbf r_u = \frac{\partial \mathbf r}{\partial u}=\Big\langle \tfrac{\partial x}{\partial u},\tfrac{\partial y}{\partial u},\tfrac{\partial z}{\partial u}\Big\rangle, \qquad \mathbf r_v = \frac{\partial \mathbf r}{\partial v}=\Big\langle \tfrac{\partial x}{\partial v},\tfrac{\partial y}{\partial v},\tfrac{\partial z}{\partial v}\Big\rangle

  • ru\mathbf r_u is ==tangent to the uu-curve== (the velocity if you move in the uu-direction).
  • rv\mathbf r_v is ==tangent to the vv-curve==.

WHY? ru\mathbf r_u is just the velocity of the curve ur(u,v0)u\mapsto \mathbf r(u,v_0), so it points along that curve — i.e. it lies in the surface.

3. Tangent plane — derivation from scratch

WHAT we want: the flat plane that best hugs the surface at P0=r(u0,v0)P_0=\mathbf r(u_0,v_0).

HOW: A plane is fixed by a point and a normal vector n\mathbf n. We already have a point P0P_0. We need n\mathbf n perpendicular to the surface — i.e. perpendicular to both tangent directions ru\mathbf r_u and rv\mathbf r_v. The cross product is exactly the tool that produces a vector orthogonal to two given vectors:

  n=ru×rv  \boxed{\;\mathbf n = \mathbf r_u \times \mathbf r_v\;}

4. Surface area — derivation from first principles

WHAT: total area of the surface as (u,v)(u,v) ranges over DD.

HOW (build it from tiny patches): Chop DD into small rectangles of size Δu×Δv\Delta u \times \Delta v. One such rectangle maps to a curvy patch on the surface. Its two edges are approximately the displacement vectors

ruΔuandrvΔv\mathbf r_u\,\Delta u \quad\text{and}\quad \mathbf r_v\,\Delta v

Why? Moving Δu\Delta u in uu shifts position by ruΔu\approx \mathbf r_u\,\Delta u (linear approximation / total differential).

The little patch is approximately a parallelogram spanned by those two edge vectors. The area of a parallelogram spanned by vectors a,b\mathbf a,\mathbf b is a×b|\mathbf a\times\mathbf b|. So:

ΔSruΔu×rvΔv=ru×rvΔuΔv\Delta S \approx |\mathbf r_u\,\Delta u \times \mathbf r_v\,\Delta v| = |\mathbf r_u\times\mathbf r_v|\,\Delta u\,\Delta v

Summing and taking the limit gives an integral:

Special case: graph z=f(x,y)z=f(x,y)

Parametrize with r(x,y)=x,y,f(x,y)\mathbf r(x,y)=\langle x,y,f(x,y)\rangle. Then rx=1,0,fx\mathbf r_x=\langle1,0,f_x\rangle, ry=0,1,fy\mathbf r_y=\langle0,1,f_y\rangle, and rx×ry=fx,fy,1rx×ry=fx2+fy2+1\mathbf r_x\times\mathbf r_y=\langle -f_x,-f_y,1\rangle \Rightarrow |\mathbf r_x\times\mathbf r_y|=\sqrt{f_x^2+f_y^2+1} A=Dfx2+fy2+1  dAA=\iint_D \sqrt{f_x^2+f_y^2+1}\;dA

5. Worked examples

6. Common mistakes

Recall Feynman: explain to a 12-year-old

Imagine wrapping a bumpy hill with a stretchy grid blanket made of tiny squares. On the flat ground each square is the same size, but when you press it onto the hill the squares get pulled and tilted, so each one covers more (or less) hill. To find how much hill there is, you measure how stretched each tiny square got and add them all up. The "stretch number" for each square is found by taking two little arrows along its sides and seeing how much area they fence off — that's the cross product. The flat plane that just touches the hill at a point, like a sheet of glass resting on it, is the tangent plane, and its perpendicular direction is found the same way.

7. Flashcards

How many parameters describe a surface, and why?
Two — a surface is intrinsically 2-dimensional; you can move in two independent directions on it.
What are ru\mathbf r_u and rv\mathbf r_v geometrically?
Tangent vectors to the uu-curve and vv-curve; they lie in the surface and span the tangent plane.
What is the normal vector to a parametric surface?
n=ru×rv\mathbf n=\mathbf r_u\times\mathbf r_v (perpendicular to both tangent vectors).
State the tangent plane equation.
a(xx0)+b(yy0)+c(zz0)=0a(x-x_0)+b(y-y_0)+c(z-z_0)=0 with a,b,c=ru×rv\langle a,b,c\rangle=\mathbf r_u\times\mathbf r_v at the point.
Give the surface area formula and the meaning of its integrand.
A=Dru×rvdAA=\iint_D|\mathbf r_u\times\mathbf r_v|\,dA; the integrand is the local area-stretch factor.
Why a cross product (not dot) for area?
Area = parallelogram spread = rurvsinθ|\mathbf r_u||\mathbf r_v|\sin\theta, which the cross-product magnitude gives; dot gives alignment.
Surface area formula for a graph z=f(x,y)z=f(x,y)?
A=Dfx2+fy2+1dAA=\iint_D\sqrt{f_x^2+f_y^2+1}\,dA.
Condition for a surface to be smooth at a point?
ru×rv0\mathbf r_u\times\mathbf r_v\neq\mathbf 0 there.
Surface area of a sphere of radius RR via parametrization?
02π ⁣0πR2sinϕdϕdθ=4πR2\int_0^{2\pi}\!\int_0^\pi R^2\sin\phi\,d\phi\,d\theta=4\pi R^2.

8. Connections

  • Cross Product — source of both the normal vector and area factor.
  • Tangent Lines and Velocity Vectors — 1-parameter analogue (r(t)\mathbf r'(t)).
  • Double Integrals — the machinery that sums tiny patch areas.
  • Change of Variables and the Jacobianru×rv|\mathbf r_u\times\mathbf r_v| is the surface-version Jacobian.
  • Surface Integrals and Flux — uses ru×rv\mathbf r_u\times\mathbf r_v with sign (orientation).
  • Arc Length — 1D cousin: r(t)dt\int|\mathbf r'(t)|\,dt vs ru×rvdA\iint|\mathbf r_u\times\mathbf r_v|\,dA.

Concept Map

freeze one param

partial d/du

partial d/dv

tangent to u-curve

tangent to v-curve

cross product

cross product

nonzero means

point plus normal

magnitude gives patch area

integrate over D

Parametric surface r of u,v

u-curves and v-curves

Tangent vector r_u

Tangent vector r_v

Normal n = r_u x r_v

Smooth regular surface

Tangent plane equation

dS = magnitude of r_u x r_v

Surface area

Hinglish (regional understanding)

Intuition Hinglish mein samjho

Dekho, ek surface ko describe karne ke liye humein do parameters chahiye — uu aur vv — kyunki surface 2-dimensional hota hai, usme tum do directions me ghoom sakte ho. Toh hum likhte hain r(u,v)=x,y,z\mathbf r(u,v)=\langle x,y,z\rangle. Jab vv fix karke uu badhao toh ek curve banta hai (u-curve), aur uska velocity vector ru\mathbf r_u surface ke andar tangent hota hai. Same tarah rv\mathbf r_v. Ye dono tangent vectors mil ke tangent plane span karte hain.

Ab normal kaise nikaalein? Humein ek vector chahiye jo dono ru\mathbf r_u aur rv\mathbf r_v ke perpendicular ho — aur cross product exactly yahi deta hai: n=ru×rv\mathbf n=\mathbf r_u\times\mathbf r_v. Point aur normal mil gaya, toh tangent plane ka equation ready: a(xx0)+b(yy0)+c(zz0)=0a(x-x_0)+b(y-y_0)+c(z-z_0)=0.

Surface area ka idea simple hai: parameter plane ko chhoti rectangles me kaato. Har rectangle surface pe ek tilted parallelogram ban jaata hai jiske do edges rudu\mathbf r_u\,du aur rvdv\mathbf r_v\,dv hain. Parallelogram ka area = cross product ki magnitude, isliye chhota patch =ru×rvdudv=|\mathbf r_u\times\mathbf r_v|\,du\,dv. Sabko jod do (integral) toh A=Dru×rvdAA=\iint_D|\mathbf r_u\times\mathbf r_v|\,dA.

Yaad rakho: area ke liye cross product, dot nahi — dot to alignment batata hai, area to spread chahiye. Aur parameter plane ka simple dAdA kaafi nahi, kyunki map stretch karta hai; isliye stretch-factor ru×rv|\mathbf r_u\times\mathbf r_v| multiply karna zaroori hai. Sphere pe ye factor R2sinϕR^2\sin\phi ban jaata hai, jisse area =4πR2=4\pi R^2 nikalta hai — classic result!

Go deeper — visual, from zero

Test yourself — Multivariable Calculus

Connections