|500 %%🖋 Edit in Excalidraw, and the dark exported image%%

Definition

Parametric Surface ^definition

A parametric surface, is a differentiable map that arises from the two-parameter parametric equation describe as:

That is, is constructed by as and vary. If is a map, then is said to be a differentiable or surface.

In most cases, we take:

Tangents & Normals

Tangents and normals over parametric surfaces are defined very similarly to that of tangent planes for bivariate functions since a bivariate function is a type of parametric surface!

Let’s assume the parametric equation can be represented as:

where are scalar functions.

We start by taking two lines and , parallel to the and -axis respectively. Under some parametric equation , these get mapped onto a surface .

The equations for the lines are:

%%🖋 Edit in Excalidraw, and the dark exported image%%

We can then treat and as parametric curves, and use the same equation of tangents & normals for them (though we do now use partial derivatives).

So the tangent vector to the curve is also tangent with respect to , because is parallel to the -axis. Hence, for a given value of we have:

Similarly for we have a tangent vector that is also parallel to :

Non-orthogonal Tangent Vectors!

Unlike with bivariate functions, our two tangent vectors are not parallel to the and axis! This means they don’t have to be orthogonal (perpendicular) to each other! That is, we don’t need to have them being at 90 degrees to each other or equivalently, we can have their dot product being non-zero:

Unit Tangent Vectors

Hence the two tangent unit vectors for a given are:

Tangent planes can be constructed using these two tangent vectors.

Unit Normal Vector

The unit normal vector is constructed the same way as the unit binormal vector in parametric curves. That is, it is constructed from the cross product of the two unit tangent vectors. However, unlike the unit binormal vector, we have two choices of normal vectors:

By the non-commutativity of the cross product, we know that:

So both and are both valid choices for normal vectors!

A parametric surface is considered smooth at a point if (this also means is non-zero).

Examples

  • A cone can be a parameterised surface via the equation:$$ x = s \cos (t) \quad\quad y = s \sin(t) \quad\quad z = s \tag{}

|500

  • A torus (donut) of radius and thickness can be a parameterised surface via the equation:$$ x = (R + r \cos(\varphi))\cos(\theta) \quad\quad y = (R+ r \cos(\varphi))\sin(\theta) \quad\quad z = r \sin(\varphi) \tag{}
![#BC|300](gl_torus02.png) >[!example] 1: Paraboloid as a Parametric Surface > > **Parameterise the surface of the paraboloid: $z = x^2 + y^2$** >>[!info]- Solution >> There are actually two common ways we can approach this problem: >> >> 1. Using [Cartesian coordinates](Cartesian%20Coordinates.md): >> $$ >> x = s \quad\quad y = t \quad\quad z = s^2 + t^2 \tag{$s,t \in \mathbb{R}$} >> $$ >> >> 2. Using [cylindrical coordinates](Cylindrical%20Coordinates.md): >> $$ >> x = \rho \cos(\phi)\quad\quad y = \rho \sin (\phi) \quad\quad z = x^2 + y^2 = \rho^2 \tag{$\rho \geq 0, \phi \in [0,2\pi)$} >> $$ > >>[!info]- Visuals >>![](Gallery%20Of%20Functions.md#$x%202%20+%20y%202$) >[!example] 2: Normal vectors to a Parametric Cone ^e2 > > **Find a normal vector to the cone parameterised by:** > $$ > \vec{\Phi}: x = s\cos (t) \quad\quad y = s \sin(t) \quad\quad z = s \tag{$s\geq 0, t \in [0,2\pi)$} > $$ >>[!info]- Solution >> The two tangent vectors (parallel to $s$ and $t$-axis) are given by: >> $$ >> \vec{T}_{s} = \frac{ \partial \vec{\Phi} }{ \partial s } =( \cos (t), \sin(t), 1) \quad\quad \vec{T}_{t} = \frac{ \partial \vec{\Phi} }{ \partial t } = (-s \sin(t), s \cos (t), 0) >> $$ >> (A) normal vector (well, technically a [vector field](Vector%20Field.md)) is given by: >> $$ >> \vec{N} = \vec{T}_{s} \times \vec{T}_{t} = \det\begin{bmatrix} >> \hat{i} & \hat{j} & \hat{k} \\ >> \cos(t) & \sin(t) & 1 \\ >> -s \sin(t) & s \cos(t) & 0 \\ >> \end{bmatrix} >> =(-s \cos(t), -s \sin(t), s (\cos^2(t) + \sin^2 (t)) >> $$ >> Hence: >> $$ >> \vec{N} (s,t) = (-s \cos (t), -s \sin(t), s) >> $$ >> >> Note: $\vec{N} = \vec{0}$ at $(s,t) = (0,0)$, which corresponds to the vertex of the cone. Here the normal vector being zero implies there is no [tangent plane](Tangent%20Plane.md), nor is the cone [differentiable](Bivariate%20Differentiability.md) at that point. Also, check the visuals to see that this choice of normal vector orients the cone 'inside'. > >>[!info]- Visuals >>![With Normal Vector Field](Gallery%20Of%20Functions.md#With%20Normal%20Vector%20Field)