None ex.I.5.18.v

Elliptic centre of the image of a zero radius cycle with the centre (u,v)

Exercise I.5.18.v [1] $ \newcommand{\Space}[3][]{\mathbb{#2}^{#3}_{#1}} \newcommand{\cycle}[3][]{{#1 C^{#2}_{#3}}} \newcommand{\realline}[3][]{#1 R^{#2}_{#3}} \newcommand{\bs}{\breve{\sigma}} \newcommand{\zcycle}[3][]{#1 Z^{#2}_{#3}} \newcommand{\SL}[1][2]{\mathrm{SL}_{#1}(\Space{R}{})} $ The e-centre of the transformation $g\zcycle{s}{\bs}g^{-1}$, $g\in\SL$ of the $\bs$-zero-radius cycle $\zcycle{s}{\bs}$ (I.5.8) coincides with the Möbius action $g\cdot z$ in $\Space{R}{\bs}$, where $z$ is the e-centre of $\zcycle{s}{\bs}$.

Hint. The result can be obtained along the lines from Subsection I.4.4.1.

Solution. Here is computer-added proof. We define the P3 as the centre of the transformed zero-radius cycle.

In [1]:
from init_cycle import *
P3=Z.sl2_similarity(a,b,c,d,e).center(es)
            Python wrappers for MoibInv Library
     ---------------------------------------------
Please cite this software as
V.V. Kisil, MoebInv: C++ libraries for manipulations in non-Euclidean geometry, SoftwareX, 11(2020),100385. doi:10.1016/j.softx.2019.100385.
     ---------------------------------------------

Using vector formalism and idx

On the other hand we calculate Möbius transformation of the point $(u,v)$

In [2]:
P2=clifford_moebius_map(sl2_clifford(a,b,c,d,e),Z.center(es),e)

Now we check are they the same in the elliptic

In [3]:
"Elliptic centre of zero radius cycle is transformed by the Moebius map: %s" %\
((P3[0]-P2[0]).subs({sign1 : -1}).normal().is_zero() \
and (P3[1]-P2[1]).subs({sign1 : -1}).normal().is_zero())
Out[3]:
'Elliptic centre of zero radius cycle is transformed by the Moebius map: True'

and hyperbolic cases:

In [4]:
"Hyperbolic centre of zero radius cycle is transformed by the Moebius map: %s" %\
((P3[0]-P2[0]).subs({sign1 : 1}).normal().is_zero() \
and (P3[1]-P2[1]).subs({sign1 : 1}).normal().is_zero())
Out[4]:
'Hyperbolic centre of zero radius cycle is transformed by the Moebius map: True'

This notebook is a part of the MoebInv notebooks project [2] .

References

  1. 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.

  2. Vladimir V. Kisil, MoebInv notebooks, 2019.

Back to Folder