Check properties of the zero-radius cycle at infinity¶
Exercise I.8.2 [1] Check the following:
$Z_{\infty}$ is the image of the zero-radius cycle $Z_{(0,0)}=(1,0,0,0)$ at the origin under reflection into the unit cycle $(1, 0,0,-1)$---see blue cycles in Fig.~I.6.4(b)--(d) from [1] .
The following statements are equivalent:
- A point $(u,v)\in\mathbb{R}_\sigma$ belongs to the \emph{zero-radius cycle} $Z_{(0,0)}$ centred at the origin.
- The zero-radius cycle $Z_{(u,v)}$ is $\sigma$-orthogonal to the zero-radius cycle $Z_{(0,0)}$.
- The inversion $z\mapsto \frac{1}{z}$ in the unit cycle is singular in the point $(u,v)$.
- The image of $Z_{(u,v)}$ under inversion in the unit cycle is orthogonal to $Z_{\infty}$.
If any one of the above statements is true, we also say that the image of $(u,v)$ under inversion in the unit cycle belongs to the zero-radius cycle at infinity.
Hint. These can be easily obtained by direct calculations, even without a CAS.
Solution. We define the required cycles:
from init_cycle import *
Z0=cycle2D([0,0],e,0)
Cu=cycle2D(1,[0,0],-1,e)
Then we simply output the reuired statements:
Latex("Zero cycle at infinity is the reflection of zero cycle at origin: %s" % \
Zinf.is_equal(Z0.cycle_similarity(Cu)))
Latex(f"$(u,v)$ belongs to zero cycle at the origin if: ${Z0.val([u,v])==0}$")
Latex(f"Zero cycle at $(u,v)$ is orthogonal to zero cycle at the origin if: ${Z.is_orthogonal(Z0,es)}$")
Latex(f"Zero cycle at infinity is orthogonal to reflection of $Z(u,v)$ if: ${Zinf.is_orthogonal(Z.cycle_similarity(Cu))}$")
This notebook is a part of the MoebInv notebooks project [2] .
References¶
Vladimir V. Kisil. Geometry of Möbius Transformations: Elliptic, Parabolic and Hyperbolic Actions of $SL_2(\mathbb{R})$. Imperial College Press, London, 2012. Includes a live DVD.
Vladimir V. Kisil, MoebInv notebooks, 2019.