Cutting a Möbius strip down the middle

One twist comes from the two half-twists of the Möbius strip. Another comes from the fact that just after you've made the cut, the resulting half-width strip goes two times around the cut, so it will turn an extra time when you unfold it to a large circle.

Try making an ordinary strip that goes two times around a cylinder and then meets itself, without a Möbius twist. If you remove the cylinder and try to unfold your strip to a circle, it will have one full twist. This twist arises from the fact that the strip's centerline must wind around itself when it goes around the cylinder twice. (In the cut-Möbius case, the direction of this winding depends on the direction the original Möbius strip was twisted, which means that the single twist from the unfolding adds to the two half-twists rather than cancel them out).

Another everyday effect that shows this (in reverse) is to try to wrap a rubber band (an ordinary cylindrical-section rubber band with a flat cross section) twice round a package. It will need to twist in order to do this, even if it can lie flat wrapped once around the package.


I seem to be terribly late (I'm quite slow as a typist), but hopefully this answer is complementary rather than redundant.

cut Möbius strip

That the Möbius strip has a single "twist" is apparent in the color clash that appears when one attempts to color one "face" red and the opposite face blue. This color clash does not occur in the cut strip, as one requires two twists to finish a circuit through the surface.

Mathematically, consider the following parametrization of the Möbius strip:

$$\begin{align*}x&=\left(r+(2-v)\cos\frac{u}{2}\right)\cos\,u\\y&=\left(r+(2-v)\cos\frac{u}{2}\right)\sin\,u\\z&=(2-v)\sin\frac{u}{2}\end{align*}$$

where $0 \leq v \leq 2$ and $0 \leq u \leq 2\pi$. The normal vector to this surface is

$$\begin{pmatrix} \frac12\left(r\sin\frac{u}{2}-r\sin\frac{3u}{2}-2(v-2)\sin\,u\sin^2\frac{u}{2}\right) \\ \frac12\left((v-2)(\sin^2 u+\cos\,u)-2r\sin\frac{u}{2} \sin\,u\right) \\ \left(r-(v-2)\cos\frac{u}{2}\right)\cos\frac{u}{2} \end{pmatrix}$$

One can verify that the normal vector expressions at $u=0$ and $u=2\pi$ are not equal, but the normal vector expressions at $u=0$ and $u=4\pi$ do agree. This means that if you trace a pencil through the surface of the usual Möbius strip (that is, fix $v$ and vary $u$), after exactly one turn through the surface, your pencil should end up at the spot exactly under your original starting point. For the "cut" Möbius strip (same parametric equation, but $0 \leq v \leq \frac23$ and $0 \leq u \leq 4\pi$), two turns ($2\times2\pi$) will return your pencil to its starting point.


Here is sundry Mathematica code:

twist[{f_, g_}, a_, b_, u_] := {Cos[u] (a + f Cos[b u] - g Sin[b u]), 
  Sin[u] (a + f Cos[b u] - g Sin[b u]), g Cos[b u] + f Sin[b u]}

With[{a = 3, b = 1/2, f = 1/2},
 g1 = ParametricPlot3D[
   twist[{f - v, 0}, a, b, u], {u, 0, 2 Pi}, {v, 0, 2 f}, 
   Axes -> None, Boxed -> False, Mesh -> None, 
   PerformanceGoal -> "Quality", PlotStyle -> FaceForm[Red, Blue]];
 g2 = ParametricPlot3D[
   twist[{f - v, 0}, a, b, u], {u, 0, 4 Pi}, {v, 0, 2 f/3}, 
   Axes -> None, Boxed -> False, Mesh -> None, 
   PerformanceGoal -> "Quality", PlotPoints -> 85, 
   PlotStyle -> FaceForm[Red, Blue]];
 g3 = ParametricPlot3D[
   twist[{f - v, 0}, a, b, u], {u, 0, 2 Pi}, {v, 2 f/3, 4 f/3}, 
   Axes -> None, Boxed -> False, Mesh -> None, 
   PerformanceGoal -> "Quality", PlotPoints -> 85, 
   PlotStyle -> Opacity[1/10, Blue]];
 GraphicsGrid[{{g1, Show[g2, g3]}}]]