Course: Calculus & Linear Algebra (TU Delft)
Topic: Lecture 1 - Surface Parametrization, Tangents, and Area


1. Finding Parameters (u,v) from a Point P

Before calculating vectors, you must know which input values (u,v) produced the point (x,y,z).

The Method

  1. Set the x,y,z components of the parametrization equal to the coordinates of point P.
  2. Solve the system of equations (usually by substitution).
  3. Tip: Look for the simplest equation first (e.g., y=2u is easier to solve than x=u2v).


2. Finding the Normal Vector (n)

The normal vector is perpendicular to the surface at a specific point.

The Formula

n=ru×rv

Where:

  • ru=ru (Tangent vector in u direction)
  • rv=rv (Tangent vector in v direction)

Steps:

  1. Calculate partial derivatives ru and rv.
  2. Plug in the numerical values for u and v.
  3. Perform the Cross Product:n=|ijkxuyuzuxvyvzv|
  4. Verification: Ensure nru=0 and nrv=0.

3. Parametrizing a Sphere

Using spherical coordinates is the standard way to describe a sphere of radius R.

The Template

Let u=ϕ (angle from positive z-axis) and v=θ (angle around xy-plane).

  • x=Rsin(u)cos(v)
  • y=Rsin(u)sin(v)
  • z=Rcos(u)

Finding Domain Limits (aub):
If the sphere is cut by planes (e.g., between z=5 and z=5):

  1. Use the z formula: z=Rcos(u).
  2. Solve for u: u=arccos(z/R).
  3. Remember: u (or ϕ) always stays between 0 and π.

4. Equation of the Tangent Plane

A flat plane touching the surface at point P(x0,y0,z0).

The Formula

a(xx0)+b(yy0)+c(zz0)=0

Where a,b,c is the Normal Vector (n).

Geometric Shortcut:
If the surface is a sphere centered at the origin, the normal vector n at point P is simply the vector from the origin to P:

n=x0,y0,z0

5. Surface Area Element (dS)

Used to calculate the area of a small "patch" on the surface.

The Formula

dS=|ru×rv|dudv

Steps:

  1. Find the normal vector n=ru×rv.
  2. Calculate the Magnitude (Scalar):
    |n|=x2+y2+z2.
  3. Multiply by the given change in parameters (du and dv).
  4. Result: Always a positive scalar (number), not a vector.

6. Total Surface Area for z=f(x,y)

When the surface is a "topography" defined by a function z=f(x,y) over a region D in the xy-plane.

The Shortcut Formula

Instead of doing the full cross product, use this simplified magnitude:

Area(S)=D1+(zx)2+(zy)2dA

The "Circular Boundary" Workflow

If the region D is defined by a cylinder or circle (e.g., x2+y2=R2), follow these steps:

  1. Calculate Partial Derivatives: Find fx and fy.
  2. Set up the Integral: Plug them into 1+fx2+fy2.
  3. Convert to Polar Coordinates:
    • Replace x2+y2 with r2.
    • Replace dA with rdrdθ (Don't forget the r!).
    • Set limits: 0θ2π and 0rR.
  4. Solve using u-substitution: Usually, the "inside" of the square root becomes your u.

Example Case (z=5xy):


Why this works:

This is actually the same as the parametric method. If you treat x and y as your parameters (u and v), the parametrization is r(x,y)=x,y,f(x,y). The magnitude of the normal vector |rx×ry| always simplifies down to 1+fx2+fy2.


7. The Torus (The "Donut" Shape) - Pappus's Theorem

A torus is created by taking a circle of radius r and rotating it around an axis at a distance R from its center.

The Standard Parametrization

For a torus centered on the z-axis:

The "Product of Circumferences" Shortcut

The surface area of a torus is simply the circumference of the small circle multiplied by the circumference of the path it travels.

The Torus Area Formula

Area(S)=(2πr)(2πR)=4π2Rr

From your exercise:

Integration Detail (The "Why")

If you are asked to show the work, the magnitude of the cross product (the surface area element) for a torus always simplifies to:

dS=r(R+rcosv)dudv

When you integrate this from 02π for both u and v, the cosv term integrates to 0 over a full circle, leaving you with just the 2π2πRr result.


Tags: #calculus #linear-algebra #parametric-surfaces #surface-area #tudelft