Helicoid-Catenoid

Helicoid-Catenoid is a family of Minimal Surfaces

helicoid-catenoid 25549
helicoid-catenoid 25549
Table[
ParametricPlot3D[ {Cos[b]*Sinh[v]*Sin[u] + Sin[b]*Cosh[v]* Cos[u],
 (-Cos[b])*Sinh[v]*Cos[u] + Sin[b]*Cosh[v]*Sin[u],
 Cos[b]*u + Sin[b]*v},
 {u, 0, Pi*2},
 {v, -1, 1},
 PlotPoints -> {40, 20}, MeshShading -> {{White,White}}],
 {b, 0, Pi/2, Pi/2/5}]
Manipulate[
ParametricPlot3D[ {Cos[b]*Sinh[v]*Sin[u] + Sin[b]*Cosh[v]* Cos[u],
 (-Cos[b])*Sinh[v]*Cos[u] + Sin[b]*Cosh[v]*Sin[u],
 Cos[b]*u + Sin[b]*v},
 {u, 0, Pi*2},
 {v, -1, 1},
 PlotPoints -> {40, 20}],
 {b, 0, Pi/2}]

Catenoid and Helicoid Isometry

Isometric property of Helicoid and Catenoid (ai answer)

ai helicoid catenoid 2026-04-17 27363
ai helicoid catenoid 2026-04-17 27363
ai helicoid catenoid 2026-04-17 27377
ai helicoid catenoid 2026-04-17 27377
ai helicoid catenoid 2026-04-17 27380
ai helicoid catenoid 2026-04-17 27380

Isometric property of Helicoid and Catenoid (ai answer)

explain the isometric property of Helicoid and Catenoid.

They belong to a one-parameter family of minimal surfaces (surfaces with zero mean curvature, like soap films) that can be continuously deformed into each other while remaining isometric at every step. This is a classic example in differential geometry, often associated with the associate family or Bonnet's transformation.

Standard Parametrizations (without scaling constants for simplicity)

Catenoid (surface of revolution from a catenary curve, like a hourglass or soap film between two rings):
x = cosh(v) * cos(u)
y = cosh(v) * sin(u)
z = v

Here, u is the angular parameter (around the axis), v is along the height/axis.

Helicoid (ruled surface, like a spiral ramp or propeller blade):
x = u * cos(v)
y = u * sin(v)
z = v

(Or sometimes with swapped parameters; variants exist.)

The Isometric Family Connecting Them

A continuous deformation uses a parameter α (alpha) from 0 to π/2:

x(u,v) = cos(α)  sinh(v)  sin(u) + sin(α)  cosh(v)  cos(u)
y(u,v) = -cos(α)  sinh(v)  cos(u) + sin(α)  cosh(v)  sin(u)
z(u,v) = u * cos(α) + v * sin(α)

This family shows the deformation is isometric because the first fundamental form (the metric on the surface, which determines lengths and angles) stays the same for all α. The induced metric from the embedding in 3D space doesn't change.

Why the Metric is the Same (Intuitive View)

Both surfaces, in suitable coordinates (u,v), have the first fundamental form (ds², the infinitesimal distance squared):

ds² = cosh²(v) * du² + dv²

(or a scaled/equivalent version like (cosh²(u) du² + dv²) depending on parametrization).

Visual/Physical Intuition

Imagine a flexible sheet. You can twist and bend the helicoid (with its straight rulings twisting into helices) smoothly into the catenoid's flared shape. Every intermediate stage is a valid minimal surface. Meridians on the catenoid turn into straight lines on the helicoid, and circles turn into helices, but lengths are preserved.

This is possible because both are minimal surfaces in the associate family: their Weierstrass/Enneper representations are related by a phase/rotation in the complex plane, leading to isometries.

Limitations

This pair is famous because it's one of the simplest non-trivial examples where two very different-looking surfaces in 3D have identical intrinsic 2D geometry. Animations of this deformation are common and striking to watch.

Isometric property of Helicoid and Catenoid (ai answer)

explain the isometric property of Helicoid and Catenoid. use Wolfram language for math.

explanation by ai

The helicoid and catenoid are locally isometric minimal surfaces. This means there is a smooth correspondence between (open subsets of) the two surfaces that preserves all intrinsic geometry: distances along curves, angles, and areas. In other words, one surface can be “bent” into the other without stretching or tearing.

The isometry is made explicit by using the same parameters u and v for both surfaces. With these parameters the first fundamental form (the metric that determines intrinsic distances) is identical for both:

Cosh[u]^2 (du^2 + dv^2)

Because the metric is exactly the same, the mapping that sends a point with parameters (u, v) on the catenoid to the point with the same parameters (u, v) on the helicoid is a local isometry.

Parametric equations (Wolfram Language notation)

Catenoid (the surface of revolution generated by a catenary):
catenoid[u_, v_] := {Cosh[u] Cos[v], Cosh[u] Sin[v], u}
Helicoid (the ruled minimal helicoid, parametrized so the metric matches the catenoid):
helicoid[u_, v_] := {Sinh[u] Cos[v], Sinh[u] Sin[v], v}

Why these two parametrizations give the same metric

You can verify it directly in Wolfram Language (or by hand):

Clear[catenoid]
catenoid[u_, v_] := {Cosh[u] Cos[v], Cosh[u] Sin[v], u};
ru = D[catenoid[u, v], u];
rv = D[catenoid[u, v], v];
xE = Simplify[ru . ru]; (* Cosh[u]^2 *)
xF = Simplify[ru . rv]; (* 0 *)
xG = Simplify[rv . rv]; (* Cosh[u]^2 *)
{xE,xF,xG}
(* {Cosh[u]^2, 0, Cosh[u]^2} *)

Clear[helicoid]
helicoid[u_, v_] := {Sinh[u] Cos[v], Sinh[u] Sin[v], v};
ru = D[helicoid[u, v], u];
rv = D[helicoid[u, v], v];
xE = Simplify[ru . ru];   (* Cosh[u]^2 *)
xF = Simplify[ru . rv];   (* 0 *)
xG = Simplify[rv . rv];   (* Cosh[u]^2 *)
{xE,xF,xG}
(* {Cosh[u]^2, 0, Cosh[u]^2} *)

Both yield the identical first fundamental form Cosh[u]^2 (du^2 + dv^2).

Relation to the “standard” ruled helicoid

The helicoid you usually see written as

standardHelicoid[r_, theta_] := {r Cos[theta], r Sin[theta], theta}

is the same surface as the one above. They are related by the simple reparametrization

r = Sinh[u];   theta = v;

Substituting gives exactly helicoid[u, v]. The Sinh[u] coordinate simply “stretches” the radial parameter so that the metric becomes Cosh[u]^2 (du^2 + dv^2), making the isometry with the catenoid obvious.

Visual / computational check (Wolfram Language)

You can plot both side-by-side with the same parameter domain to see the correspondence:

catenoid[u_, v_] := {Cosh[u] Cos[v], Cosh[u] Sin[v], u}
helicoid[u_, v_] := {Sinh[u] Cos[v], Sinh[u] Sin[v], v}

ParametricPlot3D[catenoid[u, v], {u, -2, 2}, {v, 0, 2 Pi},
  PlotLabel -> "Catenoid"]

ParametricPlot3D[helicoid[u, v], {u, -2, 2}, {v, 0, 2 Pi},
  PlotLabel -> "Helicoid (isometric parametrization)"]

Any curve drawn on one surface using parameters u[t], v[t] will have exactly the same arc-length when drawn with the same functions on the other surface, because the line element is identical.

This isometry is a classic example in differential geometry: the catenoid and helicoid belong to the same associate family of minimal surfaces (the Bonnet family), and the parameter t = 0 gives the catenoid while t = π/2 gives the helicoid. All surfaces in that family are isometric to each other.

See also:

https://virtualmathmuseum.org/Surface/helicoid-catenoid/helicoid-catenoid.html

Catenary, Catenoid