The Poincaré disk model describes a two-dimensional universe where lines are arcs that meet the unit circle at right angles. It visualizes hyperbolic geometry, a non-Euclidean system in which the parallel postulate does not hold. To measure distances in this space, we use a modified metric. Two points in the open unit disk, represented as and , have hyperbolic separation determined by the arcosh formula.
Specifically, if we denote the Euclidean distance squared as and the squared radii , , then the hyperbolic distance is determined by
.
This expression ensures that points near the boundary of the unit disk appear infinitely far away. The result is a geometry with constant negative curvature, where triangles have angle sums less than degrees and circles grow exponentially in area as their radius increases. The formula above captures these exotic features in a compact numerical computation.
Hyperbolic spaces arise in several areas of mathematics and physics. They provide models for certain kinds of large-scale geometric structures, appear in the study of complex analysis via the Poincaré metric, and underlie algorithms in modern network science. Computing distance in this setting is crucial when analyzing tilings of the disk, exploring Fuchsian groups, or understanding the geometry of moduli spaces. The negative curvature shapes the behavior of geodesics and makes hyperbolic distance a natural measurement for non-Euclidean growth.
Enter coordinates for two points strictly inside the unit circle. The script verifies that each radius is less than one; otherwise, it warns you that the coordinates lie outside the hyperbolic plane. When valid, it computes the hyperbolic distance by evaluating the formula above with , which is implemented by the JavaScript Math.acosh
function. The result appears in the text field, giving an exact measure of separation under the Poincaré metric. You can experiment with points near the boundary to observe how distances grow rapidly as you approach the circle, reflecting the space's negative curvature.
The Poincaré disk is just one representation of hyperbolic space. Another common model is the upper half-plane, where circles and vertical lines represent geodesics. Möbius transformations connect the two models. Because distances in hyperbolic space behave differently than Euclidean ones, the disk model reveals surprising phenomena. For instance, it is possible to arrange infinitely many non-overlapping disks of equal Euclidean size within the unit disk. These properties have deep connections to the theory of tessellations, Kleinian groups, and the uniformization theorem in complex analysis.
Studying hyperbolic distance helps mathematicians understand growth rates in groups and surfaces, classify Riemann surfaces, and analyze algorithms for network embeddings. The Poincaré disk also provides insights into relativity and cosmology, where negative curvature plays a role in theoretical models of the universe.
Estimate the pressure of a real gas using the Van der Waals equation with adjustable constants a and b. Compare non-ideal behavior to the ideal gas law.
Estimate the overall error probability of a quantum algorithm given per-gate error rates and the number of operations.
Compute quantized energy levels for a harmonic oscillator from frequency and quantum number.