Realizing Right-Angled Hyperbolic Pentagons in the Upper Half Plane
From abstract side-length data to Möbius-placed coordinates.
In a previous note we described the moduli space of right angled hyperbolic pentagons, which are uniquely determined by a pair of adjacent sides which must satisfy . In fact, we worked out the remaining side lengths in terms of these two:
Having this description in hand, we take it one step further and for each point in moduli space, construct an explicit such pentagon in the upper half plane model, where geodesics are faithfully represented by their endpoints, as an unordered pair in . Having this allows one to compute right angled pentagon reflection groups, and draw beautiful images of their corresponding tilings:
PICTURE
Note we will allow ourselves to use all side lengths throughout the calculations, as we know from above this can easily be recast in terms of alone. For each only need to compute one representative right angled hexagon, and so are free to use the isometries of the hyperbolic plane to simplify the problem. Indeed, using homogenity we can take one vertex of the hexagon to , and then use isotropy to rotate it so one of the sides through is the unit circle. If we take this to be the side , then
But, as is right angled, the other side through must be perpendicular to the vertical - and thus, is the unit circle. This determines :
PICTURE
As the hyperbolic length of the vertical side is and its first endpoint is at , the second endpoint must lie at as
Because this geodesic also intersects the vertical at a right angle, it is a circle centered at zero. And as it intersects the axis at height it must intersect the axis at :
PICTURE
Now we skip to computing the side . This lies on the other end of from the vertical geodesic, and so is the result of simply translating the vertical geodesic along the unit circle by distance . This is accomplished by the Mobius transformation
PICTURE
Applying this to the endpoints of the vertical geodesic yields
Thus the geodesic is simply
Finally we compute the geodesic . This is also a translation of the vertical geodesic, but not along the unit circle, instead along , a circle of radius in our model. We form the translation along this geodesic by conjugation: if is the translation of length along the vertical geodesic, and be the translation by distance along the horizontal unit circle geodesic. Then the Mobius transformation we seek is
PICTURE
We are interested in the image of the vertical geodesic’s endpoints under this isometry. As is translation along the vertical geodesic, it (and hence it’s inverse as well) fixes these endpoints, so
Using what we’ve previously learned about translation of along the unit circle, we see
Thus we have it,
And thats it! We’ll box off the result for easy finding:
Up to isometry, the right angled hyperbolic pentagon with side lengths can be realized in the upper half plane by the following five geodesics:
Code
111
//a right angled pentagon is the intersection of 5 orthogonal geodesics struct Pentagon{ Geodesic a; Geodesic b; Geodesic c; Geodesic d; Geodesic e; };
Pentagon createPentagon(float A, float B){
//unit circle
Geodesic a = Geodesic(-1.,1.);
//vertical line
Geodesic b = Geodesic(0.,infty);
//the circle at height b above unit circle
Geodesic c = Geodesic(exp(B),-exp(B));
//the circle which is translate of vertical line along unit circle by dist a
Geodesic e = Geodesic(tanh(A/2.),1./tanh(A/2.));
//the final circle is the translate of the vertical geodesic along unit circle by c, then dilation z->exp(b)z
//the computation is annoying because we need tanh(c/2) and coth(c/2) for the endpoints; but need them in terms of A and B
float cA = cosh(A);
float sA = sinh(A);
float cB = cosh(B);
float sB = sinh(B);
float cD = sA*sB;
float sD = sqrt(cD*cD-1.);
//coshC and sinhC:
float sC = cA/sD;
float cC = sqrt(sC*sC+1.);
//tanh(C/2) (using hyperbolic half angle)
float tanhC2 = sC/(1.+cC);
float eA = exp(A);
//finally!
Geodesic d = Geodesic(eA*tanhC2,eA/tanhE2);
Pentagon P = Pentagon(a,b,c,d,e);
return P;
}