<?xml version="1.0" encoding="UTF-8" standalone="yes"?><oembed><version><![CDATA[1.0]]></version><provider_name><![CDATA[Geometry and the imagination]]></provider_name><provider_url><![CDATA[https://lamington.wordpress.com]]></provider_url><author_name><![CDATA[Danny Calegari]]></author_name><author_url><![CDATA[https://lamington.wordpress.com/author/dannycaltech/]]></author_url><title><![CDATA[Random turtles in the hyperbolic&nbsp;plane]]></title><type><![CDATA[link]]></type><html><![CDATA[<p>My eldest daughter Lisa recently brought home a note from her school from her computer class teacher. Apparently, the 5th grade kids have been learning to program in <a href="http://en.wikipedia.org/wiki/Logo_(programming_language)">Logo</a>, in the <a href="http://en.wikipedia.org/wiki/MicroWorlds">MicroWorlds</a> programming environment. I have very pleasant memories of learning to program in Logo back when I was in middle school. If you&#8217;re not familiar with Logo, it&#8217;s a simple variant of Lisp designed by Seymour Papert, whereby the programmer directs a turtle cursor to move about the screen, moving forward some distance, turning left or right, etc. The turtle can also be directed to raise or lower a pen, and one can draw very pretty pictures in Logo as the track of the turtle&#8217;s motion.</p>
<p>Let&#8217;s restrict our turtle&#8217;s movements to alternating between taking a step of a fixed size S, and turning either left or right through some fixed angle A. Then a (compiled) &#8220;program&#8221; is just a finite string in the two letter alphabet L and R, indicating the direction of turning at each step. A &#8220;random turtle&#8221; is one for which the choice of L or R at each step is made randomly, say with equal probability, and choices made independently at each step. The motion of a Euclidean random turtle on a small scale is determined by its turning angle A, but on a large scale &#8220;looks like&#8221; Brownian motion. Here are two examples of Euclidean random turtles for A=45 degrees and A=60 degrees respectively.</p>
<p><a href="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_euclid/" rel="attachment wp-att-1824"><img data-attachment-id="1824" data-permalink="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_euclid/" data-orig-file="https://lamington.files.wordpress.com/2012/12/turtle_euclid.jpg?w=490&#038;h=279" data-orig-size="729,416" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="turtle_Euclid" data-image-description="" data-medium-file="https://lamington.files.wordpress.com/2012/12/turtle_euclid.jpg?w=490&#038;h=279?w=300" data-large-file="https://lamington.files.wordpress.com/2012/12/turtle_euclid.jpg?w=490&#038;h=279?w=729" class="size-full wp-image-1824 aligncenter" alt="turtle_Euclid" src="https://lamington.files.wordpress.com/2012/12/turtle_euclid.jpg?w=490&#038;h=279" width="490" height="279" srcset="https://lamington.files.wordpress.com/2012/12/turtle_euclid.jpg?w=490&amp;h=279 490w, https://lamington.files.wordpress.com/2012/12/turtle_euclid.jpg?w=150&amp;h=86 150w, https://lamington.files.wordpress.com/2012/12/turtle_euclid.jpg?w=300&amp;h=171 300w, https://lamington.files.wordpress.com/2012/12/turtle_euclid.jpg 729w" sizes="(max-width: 490px) 100vw, 490px" /></a></p>
<p>The purpose of this blog post is to describe the behavior of a random turtle in the hyperbolic plane, and the appearance of an interesting phase transition at <img src="https://s0.wp.com/latex.php?latex=%5Csin%28A%2F2%29+%3D+%5Ctanh%5E%7B-1%7D%28S%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;sin(A/2) = &#92;tanh^{-1}(S)" title="&#92;sin(A/2) = &#92;tanh^{-1}(S)" class="latex" />. This example illustrates nicely some themes in probability and group dynamics, and lends itself easily to visualization.</p>
<p><!--more--></p>
<p>Let&#8217;s work in the <a href="http://en.wikipedia.org/wiki/Poincaré_disk_model">Poincaré unit disk model</a> of hyperbolic geometry. In this model, the hyperbolic plane is thought of as the interior of the unit disk in the Euclidean plane, and the hyperbolic metric is related to the Euclidean metric by multiplying distances infinitesimally by <img src="https://s0.wp.com/latex.php?latex=2%2F%281-r%5E2%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="2/(1-r^2)" title="2/(1-r^2)" class="latex" /> at a point whose (Euclidean) distance from the origin is <img src="https://s0.wp.com/latex.php?latex=r&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="r" title="r" class="latex" />. In this model, the hyperbolic distance between a point at the origin and a point at Euclidean distance <img src="https://s0.wp.com/latex.php?latex=r&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="r" title="r" class="latex" /> away is <img src="https://s0.wp.com/latex.php?latex=2%5Ctanh%5E%7B-1%7D%28r%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="2&#92;tanh^{-1}(r)" title="2&#92;tanh^{-1}(r)" class="latex" />. So, at the risk of being slightly confusing, let me say that a hyperbolic random turtle has &#8220;step size S&#8221; if the first step, starting at the origin, lands on the Euclidean circle of radius S.</p>
<p style="text-align:left;">I wrote a little program called <strong>turtle</strong> to illustrate the motion of a random turtle for various values of S and A; it can be downloaded from <a href="https://github.com/dannycalegari/turtle">my github repository</a> if you want to play with it. The figures below are all produced with it. Let&#8217;s look at a few examples.</p>
<p style="text-align:center;"><a href="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_picture_1/" rel="attachment wp-att-1827"><img data-attachment-id="1827" data-permalink="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_picture_1/" data-orig-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_1.jpg" data-orig-size="916,958" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="turtle_picture_1" data-image-description="" data-medium-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_1.jpg?w=287" data-large-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_1.jpg?w=916" class="alignnone size-medium wp-image-1827" alt="turtle_picture_1" src="https://lamington.files.wordpress.com/2012/12/turtle_picture_1.jpg?w=286&#038;h=300" width="286" height="300" srcset="https://lamington.files.wordpress.com/2012/12/turtle_picture_1.jpg?w=286&amp;h=300 286w, https://lamington.files.wordpress.com/2012/12/turtle_picture_1.jpg?w=572&amp;h=598 572w, https://lamington.files.wordpress.com/2012/12/turtle_picture_1.jpg?w=143&amp;h=150 143w" sizes="(max-width: 286px) 100vw, 286px" /></a><a href="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_picture_2/" rel="attachment wp-att-1828"><img data-attachment-id="1828" data-permalink="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_picture_2/" data-orig-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_2.jpg" data-orig-size="916,958" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="turtle_picture_2" data-image-description="" data-medium-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_2.jpg?w=287" data-large-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_2.jpg?w=916" class="alignnone size-medium wp-image-1828" alt="turtle_picture_2" src="https://lamington.files.wordpress.com/2012/12/turtle_picture_2.jpg?w=286&#038;h=300" width="286" height="300" srcset="https://lamington.files.wordpress.com/2012/12/turtle_picture_2.jpg?w=286&amp;h=300 286w, https://lamington.files.wordpress.com/2012/12/turtle_picture_2.jpg?w=572&amp;h=598 572w, https://lamington.files.wordpress.com/2012/12/turtle_picture_2.jpg?w=143&amp;h=150 143w" sizes="(max-width: 286px) 100vw, 286px" /></a><a href="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_picture_3/" rel="attachment wp-att-1829"><img data-attachment-id="1829" data-permalink="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_picture_3/" data-orig-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_3.jpg" data-orig-size="916,958" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="turtle_picture_3" data-image-description="" data-medium-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_3.jpg?w=287" data-large-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_3.jpg?w=916" class="alignnone size-medium wp-image-1829" alt="turtle_picture_3" src="https://lamington.files.wordpress.com/2012/12/turtle_picture_3.jpg?w=286&#038;h=300" width="286" height="300" srcset="https://lamington.files.wordpress.com/2012/12/turtle_picture_3.jpg?w=286&amp;h=300 286w, https://lamington.files.wordpress.com/2012/12/turtle_picture_3.jpg?w=572&amp;h=598 572w, https://lamington.files.wordpress.com/2012/12/turtle_picture_3.jpg?w=143&amp;h=150 143w" sizes="(max-width: 286px) 100vw, 286px" /></a><a href="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_picture_4/" rel="attachment wp-att-1830"><img data-attachment-id="1830" data-permalink="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_picture_4/" data-orig-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_4.jpg" data-orig-size="916,958" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="turtle_picture_4" data-image-description="" data-medium-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_4.jpg?w=287" data-large-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_4.jpg?w=916" class="alignnone size-medium wp-image-1830" alt="turtle_picture_4" src="https://lamington.files.wordpress.com/2012/12/turtle_picture_4.jpg?w=286&#038;h=300" width="286" height="300" srcset="https://lamington.files.wordpress.com/2012/12/turtle_picture_4.jpg?w=286&amp;h=300 286w, https://lamington.files.wordpress.com/2012/12/turtle_picture_4.jpg?w=572&amp;h=598 572w, https://lamington.files.wordpress.com/2012/12/turtle_picture_4.jpg?w=143&amp;h=150 143w" sizes="(max-width: 286px) 100vw, 286px" /></a><a href="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_picture_5/" rel="attachment wp-att-1831"><img data-attachment-id="1831" data-permalink="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_picture_5/" data-orig-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_5.jpg" data-orig-size="916,958" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="turtle_picture_5" data-image-description="" data-medium-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_5.jpg?w=287" data-large-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_5.jpg?w=916" class="alignnone size-medium wp-image-1831" alt="turtle_picture_5" src="https://lamington.files.wordpress.com/2012/12/turtle_picture_5.jpg?w=286&#038;h=300" width="286" height="300" srcset="https://lamington.files.wordpress.com/2012/12/turtle_picture_5.jpg?w=286&amp;h=300 286w, https://lamington.files.wordpress.com/2012/12/turtle_picture_5.jpg?w=572&amp;h=598 572w, https://lamington.files.wordpress.com/2012/12/turtle_picture_5.jpg?w=143&amp;h=150 143w" sizes="(max-width: 286px) 100vw, 286px" /></a></p>
<p style="text-align:left;">The phase transition alluded to earlier is very evident in these pictures: for large S and small A, the turtle zooms off in an almost straight line to the boundary, with very little wiggling along the way. For small S and large A, the turtle meanders around aimlessly, filling up lots of space, intersecting its path many times, until eventually wandering off to the boundary in a more or less random direction.</p>
<p style="text-align:left;">For a given length, what is the critical turning angle? The &#8220;worst case&#8221; scenario is a turtle which always turns left (or always turns right). For such a turtle there is a critical angle (for a given length) such that the trajectory of the turtle just fails to close up. Technically, the hyperbolic isometry describing the turtle&#8217;s motion at each step is <em>parabolic</em>, and fixes a unique point at infinity. The segments of the turtle&#8217;s trajectory will then osculate an invariant <em>horocycle</em> for the parabolic isometry, when the (discrete) atoms of positive turning curvature at the vertices exactly balance the negative curvature of the hyperbolic plane.</p>
<p style="text-align:center;"><a href="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_picture_osculating_horocycle/" rel="attachment wp-att-1834"><img data-attachment-id="1834" data-permalink="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/turtle_picture_osculating_horocycle/" data-orig-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_osculating_horocycle.jpg" data-orig-size="916,916" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="turtle_picture_osculating_horocycle" data-image-description="" data-medium-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_osculating_horocycle.jpg?w=300&#038;h=300" data-large-file="https://lamington.files.wordpress.com/2012/12/turtle_picture_osculating_horocycle.jpg?w=916" class="alignnone size-medium wp-image-1834" alt="turtle_picture_osculating_horocycle" src="https://lamington.files.wordpress.com/2012/12/turtle_picture_osculating_horocycle.jpg?w=300&#038;h=300" width="300" height="300" srcset="https://lamington.files.wordpress.com/2012/12/turtle_picture_osculating_horocycle.jpg?w=300&amp;h=300 300w, https://lamington.files.wordpress.com/2012/12/turtle_picture_osculating_horocycle.jpg?w=600&amp;h=600 600w, https://lamington.files.wordpress.com/2012/12/turtle_picture_osculating_horocycle.jpg?w=150&amp;h=150 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p style="text-align:center;">A critical turtle trajectory osculates a horocycle</p>
<p style="text-align:left;">The critical relationship is precisely that <img src="https://s0.wp.com/latex.php?latex=%5Csin%28A%2F2%29+%3D+S&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;sin(A/2) = S" title="&#92;sin(A/2) = S" class="latex" />, with our convention about the relationship between S and the hyperbolic length of the segments. For angles smaller than this value, the trajectory is a <em>quasigeodesic</em> &#8212; i.e. it stays within a bounded (hyperbolic) distance of an honest geodesic, and does not wind around at all. For angles bigger than this value, there is a definite probability at every stage that the trajectory will undergo some number of complete full turns, and it might return to some region it has visited before. The trajectory still converges to a point at infinity with probability one (this is a very robust feature of random walk in negatively curved spaces) but it makes deviation of order <img src="https://s0.wp.com/latex.php?latex=%5Clog%28n%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;log(n)" title="&#92;log(n)" class="latex" /> from this geodesic in the first <img src="https://s0.wp.com/latex.php?latex=n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="n" title="n" class="latex" /> steps.</p>
<p style="text-align:left;">One interesting statistic for an immersed path <img src="https://s0.wp.com/latex.php?latex=%5Cgamma&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;gamma" title="&#92;gamma" class="latex" /> in the plane is the <em>winding number</em>. If we trivialize the unit tangent bundle, the derivative <img src="https://s0.wp.com/latex.php?latex=%5Cgamma%27&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;gamma&#039;" title="&#92;gamma&#039;" class="latex" /> can be thought of as a map to the circle, and we can ask how many times it winds around. In the Euclidean plane there is a natural trivialization of the unit tangent bundle via parallel transport, because of the flatness; technically there is a flat orthogonal connection. In the hyperbolic plane any orthogonal connection must have curvature, but there <em>is</em> a flat connection with structure group equal to the group of (hyperbolic) isometries, by identifying the unit circle in each tangent bundle with the circle at infinity. Explicitly: every tangent vector <img src="https://s0.wp.com/latex.php?latex=v&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="v" title="v" class="latex" /> is tangent to a unique oriented geodesic <img src="https://s0.wp.com/latex.php?latex=%5Cgamma&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;gamma" title="&#92;gamma" class="latex" /> which limits to a unique point <img src="https://s0.wp.com/latex.php?latex=%5Cgamma%5E%2B&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;gamma^+" title="&#92;gamma^+" class="latex" /> in the circle at infinity. This identification is global, and respected by the natural action of the isometry group.</p>
<p style="text-align:left;">For a random turtle in the Euclidean plane, the trajectory turns left or right through angle A at every step, and the winding number after some number of steps is distributed like simple random walk on the integers. That is, if <img src="https://s0.wp.com/latex.php?latex=W_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="W_n" title="W_n" class="latex" /> denotes the winding number after <img src="https://s0.wp.com/latex.php?latex=n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="n" title="n" class="latex" /> steps, then the random variable <img src="https://s0.wp.com/latex.php?latex=n%5E%7B-1%2F2%7D+W_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="n^{-1/2} W_n" title="n^{-1/2} W_n" class="latex" /> converges to a normal distribution with mean zero and standard deviation A. The point is that the increments at every stage are independent and identically distributed. On the other hand, for a random turtle in the hyperbolic plane, each step induces an isometry of the hyperbolic plane, and thereby a <em>projective</em> transformation of the boundary circle. There is no natural invariant metric on this boundary circle, and therefore it is more subtle to compute winding number from this action.</p>
<p style="text-align:left;">Let&#8217;s abstract the discussion somewhat. Suppose we are given a finite collection <img src="https://s0.wp.com/latex.php?latex=X&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="X" title="X" class="latex" /> of (orientation-preserving) homeomorphisms of the circle. The circle is covered by the line, and the group <img src="https://s0.wp.com/latex.php?latex=%5Ctext%7BHomeo%7D%5E%2B%28S%5E1%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;text{Homeo}^+(S^1)" title="&#92;text{Homeo}^+(S^1)" class="latex" /> of orientation-preserving homeomorphisms of the circle is covered by the group of orientation-preserving homeomorphisms of the line that commute with integer translation.  Call this covering group <img src="https://s0.wp.com/latex.php?latex=%5Ctext%7BHomeo%7D%5E%2B%28S%5E1%29%5E%5Csim&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;text{Homeo}^+(S^1)^&#92;sim" title="&#92;text{Homeo}^+(S^1)^&#92;sim" class="latex" />, where the tilde denotes central extension. Poincaré&#8217;s rotation number is a function from <img src="https://s0.wp.com/latex.php?latex=%5Ctext%7BHomeo%7D%5E%2B%28S%5E1%29%5E%5Csim&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;text{Homeo}^+(S^1)^&#92;sim" title="&#92;text{Homeo}^+(S^1)^&#92;sim" class="latex" /> to the real numbers, whose reduction mod the integers is the usual rotation number for a circle homeomorphism. Thinking of our turtle as turning left or turning right continuously implicitly determines a lift of the motion to the universal covering group, so we can suppose that we are given a finite collection <img src="https://s0.wp.com/latex.php?latex=X%5E%5Csim&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="X^&#92;sim" title="X^&#92;sim" class="latex" /> of lifts of <img src="https://s0.wp.com/latex.php?latex=X&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="X" title="X" class="latex" />. Now we consider some random walk <img src="https://s0.wp.com/latex.php?latex=x_0+x_1+x_2+%5Ccdots&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="x_0 x_1 x_2 &#92;cdots" title="x_0 x_1 x_2 &#92;cdots" class="latex" /> where each <img src="https://s0.wp.com/latex.php?latex=x_i&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="x_i" title="x_i" class="latex" /> is drawn independently and uniformly from <img src="https://s0.wp.com/latex.php?latex=X%5E%5Csim&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="X^&#92;sim" title="X^&#92;sim" class="latex" />, and we ask about the distribution of the random variable <img src="https://s0.wp.com/latex.php?latex=W_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="W_n" title="W_n" class="latex" />, which is defined to be the (real valued) rotation number of the composition <img src="https://s0.wp.com/latex.php?latex=x_0+x_1+%5Ccdots+x_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="x_0 x_1 &#92;cdots x_n" title="x_0 x_1 &#92;cdots x_n" class="latex" />.</p>
<p style="text-align:left;">Now, although there is typically no metric/measure on the circle left invariant by <img src="https://s0.wp.com/latex.php?latex=X&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="X" title="X" class="latex" /> there is a natural measure &#8212; the so-called <em>harmonic measure</em> &#8212; which is invariant <em>on average</em>. If <img src="https://s0.wp.com/latex.php?latex=%5Cmu&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;mu" title="&#92;mu" class="latex" /> is a probability measure on the circle, we can define <img src="https://s0.wp.com/latex.php?latex=X_%2A+%5Cmu%3A+%3D+%5Cfrac+%7B1%7D%7B%7CX%7C%7D+%5Csum_%7Bx%5Cin+X%7D+x_%2A%5Cmu&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="X_* &#92;mu: = &#92;frac {1}{|X|} &#92;sum_{x&#92;in X} x_*&#92;mu" title="X_* &#92;mu: = &#92;frac {1}{|X|} &#92;sum_{x&#92;in X} x_*&#92;mu" class="latex" />, and then let <img src="https://s0.wp.com/latex.php?latex=%5Cmu_n%3A+%3D+%5Cfrac+1+n+%5Csum_%7Bi%3D0%7D%5E%7Bn-1%7D+X_%2A%5Ei+%5Cmu&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;mu_n: = &#92;frac 1 n &#92;sum_{i=0}^{n-1} X_*^i &#92;mu" title="&#92;mu_n: = &#92;frac 1 n &#92;sum_{i=0}^{n-1} X_*^i &#92;mu" class="latex" />. The <img src="https://s0.wp.com/latex.php?latex=%5Cmu_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;mu_n" title="&#92;mu_n" class="latex" /> have a subsequence converging to a fixed point for the operator <img src="https://s0.wp.com/latex.php?latex=X_%2A&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="X_*" title="X_*" class="latex" />; such a fixed point <img src="https://s0.wp.com/latex.php?latex=%5Cmu_%5Cinfty&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;mu_&#92;infty" title="&#92;mu_&#92;infty" class="latex" /> is a harmonic measure. Note that such a harmonic measure is quasi-invariant under every <img src="https://s0.wp.com/latex.php?latex=x+%5Cin+X&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="x &#92;in X" title="x &#92;in X" class="latex" />. The measure <img src="https://s0.wp.com/latex.php?latex=%5Cmu_%5Cinfty&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;mu_&#92;infty" title="&#92;mu_&#92;infty" class="latex" /> pulls back to a locally finite measure <img src="https://s0.wp.com/latex.php?latex=%5Cmu_%5Cinfty%5E%5Csim&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;mu_&#92;infty^&#92;sim" title="&#92;mu_&#92;infty^&#92;sim" class="latex" /> on the real line, and this pullback is harmonic for the action of <img src="https://s0.wp.com/latex.php?latex=X%5E%5Csim&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="X^&#92;sim" title="X^&#92;sim" class="latex" />. We can define a function <img src="https://s0.wp.com/latex.php?latex=M%3A%5Cmathbb%7BR%7D+%5Cto+%5Cmathbb%7BR%7D&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="M:&#92;mathbb{R} &#92;to &#92;mathbb{R}" title="M:&#92;mathbb{R} &#92;to &#92;mathbb{R}" class="latex" /> as follows. For each <img src="https://s0.wp.com/latex.php?latex=t&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="t" title="t" class="latex" /> choose some <img src="https://s0.wp.com/latex.php?latex=T%5Cll+t&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="T&#92;ll t" title="T&#92;ll t" class="latex" /> and define <img src="https://s0.wp.com/latex.php?latex=M%28t%29+%3D+%5Cmu_%5Cinfty%28%5BT%2Ct%5D%29+-+%5Cmu_%5Cinfty%28%5BT%2C0%5D%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="M(t) = &#92;mu_&#92;infty([T,t]) - &#92;mu_&#92;infty([T,0])" title="M(t) = &#92;mu_&#92;infty([T,t]) - &#92;mu_&#92;infty([T,0])" class="latex" />. Then <img src="https://s0.wp.com/latex.php?latex=M&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="M" title="M" class="latex" /> is monotone nondecreasing, and <img src="https://s0.wp.com/latex.php?latex=M%28t%2Bn%29+%3D+M%28t%29+%2B+n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="M(t+n) = M(t) + n" title="M(t+n) = M(t) + n" class="latex" /> for any <img src="https://s0.wp.com/latex.php?latex=t&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="t" title="t" class="latex" /> and any integer <img src="https://s0.wp.com/latex.php?latex=n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="n" title="n" class="latex" />. In particular, the winding number <img src="https://s0.wp.com/latex.php?latex=W_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="W_n" title="W_n" class="latex" /> satisfies <img src="https://s0.wp.com/latex.php?latex=%7CW_n+-+M%28x_0x_1%5Ccdots+x_n%280%29%29%7C+%3C+1&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="|W_n - M(x_0x_1&#92;cdots x_n(0))| &lt; 1" title="|W_n - M(x_0x_1&#92;cdots x_n(0))| &lt; 1" class="latex" /> for any <img src="https://s0.wp.com/latex.php?latex=n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="n" title="n" class="latex" />.</p>
<p style="text-align:left;">Now, by the definition of a harmonic measure, for any <img src="https://s0.wp.com/latex.php?latex=s%2Ct&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="s,t" title="s,t" class="latex" /> and for random <img src="https://s0.wp.com/latex.php?latex=x%5Cin+X%5E%5Csim&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="x&#92;in X^&#92;sim" title="x&#92;in X^&#92;sim" class="latex" />, there is an equality <img src="https://s0.wp.com/latex.php?latex=%5Cmathbb%7BE%7D%28M%28x%28t%29%29+-+M%28x%28s%29%29%29+%3D+M%28t%29+-+M%28s%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;mathbb{E}(M(x(t)) - M(x(s))) = M(t) - M(s)" title="&#92;mathbb{E}(M(x(t)) - M(x(s))) = M(t) - M(s)" class="latex" /> (here the notation <img src="https://s0.wp.com/latex.php?latex=%5Cmathbb%7BE%7D%28%5Ccdot%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;mathbb{E}(&#92;cdot)" title="&#92;mathbb{E}(&#92;cdot)" class="latex" /> means the <em>expectation</em> of a random function). In particular, <img src="https://s0.wp.com/latex.php?latex=%5Cmathbb%7BE%7D%28M%28x%28t%29%29%29+-+M%28t%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;mathbb{E}(M(x(t))) - M(t)" title="&#92;mathbb{E}(M(x(t))) - M(t)" class="latex" /> is <em>constant</em> independent of <img src="https://s0.wp.com/latex.php?latex=t&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="t" title="t" class="latex" />. We call this constant quantity the <em>drift</em> and denote it by <img src="https://s0.wp.com/latex.php?latex=D&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="D" title="D" class="latex" />. Define a sequence of random variables <img src="https://s0.wp.com/latex.php?latex=W%27_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="W&#039;_n" title="W&#039;_n" class="latex" /> by <img src="https://s0.wp.com/latex.php?latex=W%27_n%3A%3DM%28x_0x_1%5Ccdots+x_n%280%29%29+-+nD&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="W&#039;_n:=M(x_0x_1&#92;cdots x_n(0)) - nD" title="W&#039;_n:=M(x_0x_1&#92;cdots x_n(0)) - nD" class="latex" />. By the calculation above we see that for each <img src="https://s0.wp.com/latex.php?latex=n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="n" title="n" class="latex" />, the expectation of <img src="https://s0.wp.com/latex.php?latex=W%27_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="W&#039;_n" title="W&#039;_n" class="latex" /> conditioned on a particular value of <img src="https://s0.wp.com/latex.php?latex=W%27_%7Bn-1%7D&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="W&#039;_{n-1}" title="W&#039;_{n-1}" class="latex" /> is equal to the given value of <img src="https://s0.wp.com/latex.php?latex=W%27_%7Bn-1%7D&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="W&#039;_{n-1}" title="W&#039;_{n-1}" class="latex" />. More informally, we could just write <img src="https://s0.wp.com/latex.php?latex=%5Cmathbb%7BE%7D%28W%27_n%29+%3D+W%27_%7Bn-1%7D&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;mathbb{E}(W&#039;_n) = W&#039;_{n-1}" title="&#92;mathbb{E}(W&#039;_n) = W&#039;_{n-1}" class="latex" /> and say that at every step, the expected change in the value of <img src="https://s0.wp.com/latex.php?latex=W%27&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="W&#039;" title="W&#039;" class="latex" /> is zero. This is a familiar object in probability theory, and is known as a <em>martingale</em>. One can think of the values of the martingale as the wealth of a gambler who makes a succession of fair bets. The wealth of such a gambler over time looks roughly like a simple random walk, after reparameterizing time proportional to the rate at which the gambler takes risks (as measured by the variance of the outcomes of each bet). For our random product of homeomorphisms, there are two possibilities: either the martingale converges, as successive &#8220;bets&#8221; become smaller and smaller, and the winding number converges to some final value (this happens in the case that the length of the turtle&#8217;s steps are big compared to the turning angle), or else the position of the point <img src="https://s0.wp.com/latex.php?latex=x_0x_1%5Ccdots+x_n%280%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="x_0x_1&#92;cdots x_n(0)" title="x_0x_1&#92;cdots x_n(0)" class="latex" /> is equidistributed in the circle with respect to <img src="https://s0.wp.com/latex.php?latex=%5Cmu_%5Cinfty&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;mu_&#92;infty" title="&#92;mu_&#92;infty" class="latex" />, and there is a central limit theorem: <img src="https://s0.wp.com/latex.php?latex=n%5E%7B-1%2F2%7DW%27_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="n^{-1/2}W&#039;_n" title="n^{-1/2}W&#039;_n" class="latex" /> converges to a Gaussian.</p>
<p style="text-align:left;">Returning to our original setup, the left-right symmetry forces the drift <img src="https://s0.wp.com/latex.php?latex=D&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="D" title="D" class="latex" /> to equal zero, and we can identify <img src="https://s0.wp.com/latex.php?latex=W%27_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="W&#039;_n" title="W&#039;_n" class="latex" /> with the winding number <img src="https://s0.wp.com/latex.php?latex=W_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="W_n" title="W_n" class="latex" /> up to a constant. How does the variance of <img src="https://s0.wp.com/latex.php?latex=n%5E%7B-1%2F2%7DW_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="n^{-1/2}W_n" title="n^{-1/2}W_n" class="latex" /> depend on the variables S and A? The following figure shows a graph of the variance as a function of S and A. The red line marks the phase transition from zero variance (i.e. quasigeodesic turtle trajectories) to strictly positive variance.</p>
<p style="text-align:center;"><a href="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/phase_transition/" rel="attachment wp-att-1848"><img data-attachment-id="1848" data-permalink="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/phase_transition/" data-orig-file="https://lamington.files.wordpress.com/2012/12/phase_transition.jpg?w=490&#038;h=468" data-orig-size="916,875" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="phase_transition" data-image-description="" data-medium-file="https://lamington.files.wordpress.com/2012/12/phase_transition.jpg?w=490&#038;h=468?w=300" data-large-file="https://lamington.files.wordpress.com/2012/12/phase_transition.jpg?w=490&#038;h=468?w=916" class="alignnone size-full wp-image-1848" alt="phase_transition" src="https://lamington.files.wordpress.com/2012/12/phase_transition.jpg?w=490&#038;h=468" width="490" height="468" srcset="https://lamington.files.wordpress.com/2012/12/phase_transition.jpg?w=490&amp;h=468 490w, https://lamington.files.wordpress.com/2012/12/phase_transition.jpg?w=150&amp;h=143 150w, https://lamington.files.wordpress.com/2012/12/phase_transition.jpg?w=300&amp;h=287 300w, https://lamington.files.wordpress.com/2012/12/phase_transition.jpg?w=768&amp;h=734 768w, https://lamington.files.wordpress.com/2012/12/phase_transition.jpg 916w" sizes="(max-width: 490px) 100vw, 490px" /></a></p>
<p style="text-align:left;">As one sees from the figure, the phase transition is not something sharp that can be easily seen experimentally, and in fact, the graph looks completely smooth along the phase locus (although we know it can&#8217;t be real analytic there). This experimental observation can be theoretically confirmed, as follows.</p>
<p style="text-align:left;">Consider the behavior of a random turtle, with fixed stepsize, for some turning angle A&#8217; just marginally bigger than the critical angle A. The critical turtle trajectory bounds an infinite polygon with edges of length <img src="https://s0.wp.com/latex.php?latex=2%5Ctanh%5E%7B-1%7D%28S%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="2&#92;tanh^{-1}(S)" title="2&#92;tanh^{-1}(S)" class="latex" /> and external angles A; this polygon can be decomposed into semi-ideal triangles with internal angles <img src="https://s0.wp.com/latex.php?latex=%28%5Cpi-A%29%2F2%2C+%5Cpi%2F2%2C+0&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="(&#92;pi-A)/2, &#92;pi/2, 0" title="(&#92;pi-A)/2, &#92;pi/2, 0" class="latex" /> and finite side length <img src="https://s0.wp.com/latex.php?latex=S%27%3A%3D%5Ctanh%5E%7B-1%7D%28S%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="S&#039;:=&#92;tanh^{-1}(S)" title="S&#039;:=&#92;tanh^{-1}(S)" class="latex" />. As we deform the angle <img src="https://s0.wp.com/latex.php?latex=A&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="A" title="A" class="latex" /> we get a new triangle with angles <img src="https://s0.wp.com/latex.php?latex=%5Calpha%2C+%5Cpi%2F2%2C%5Cepsilon&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;alpha, &#92;pi/2,&#92;epsilon" title="&#92;alpha, &#92;pi/2,&#92;epsilon" class="latex" /> where <img src="https://s0.wp.com/latex.php?latex=%5Calpha+%3D+%28%5Cpi-A%27%29%2F2&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;alpha = (&#92;pi-A&#039;)/2" title="&#92;alpha = (&#92;pi-A&#039;)/2" class="latex" />, and the angle <img src="https://s0.wp.com/latex.php?latex=%5Cepsilon&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;epsilon" title="&#92;epsilon" class="latex" /> is opposite a side of fixed length <img src="https://s0.wp.com/latex.php?latex=S%27&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="S&#039;" title="S&#039;" class="latex" />. The hyperbolic law of cosines says in this context that <img src="https://s0.wp.com/latex.php?latex=%5Ccos%28%5Cepsilon%29+%3D+%5Csin%28%5Calpha%29%5Ccosh%28S%27%29&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;cos(&#92;epsilon) = &#92;sin(&#92;alpha)&#92;cosh(S&#039;)" title="&#92;cos(&#92;epsilon) = &#92;sin(&#92;alpha)&#92;cosh(S&#039;)" class="latex" />. Since <img src="https://s0.wp.com/latex.php?latex=S%27&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="S&#039;" title="S&#039;" class="latex" /> is fixed, and <img src="https://s0.wp.com/latex.php?latex=%5Cepsilon&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;epsilon" title="&#92;epsilon" class="latex" /> is small, we can approximate <img src="https://s0.wp.com/latex.php?latex=%5Ccos%28%5Cepsilon%29+%5Csim+1-%5Cepsilon%5E2%2F2&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;cos(&#92;epsilon) &#92;sim 1-&#92;epsilon^2/2" title="&#92;cos(&#92;epsilon) &#92;sim 1-&#92;epsilon^2/2" class="latex" />; in other words, the angle <img src="https://s0.wp.com/latex.php?latex=%5Cepsilon&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;epsilon" title="&#92;epsilon" class="latex" /> is of polynomial (actually, quadratic) order in the difference <img src="https://s0.wp.com/latex.php?latex=A%27-A&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="A&#039;-A" title="A&#039;-A" class="latex" />. Now, suppose <img src="https://s0.wp.com/latex.php?latex=%5Cepsilon+%3D+1%2FN&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="&#92;epsilon = 1/N" title="&#92;epsilon = 1/N" class="latex" /> for some very large <img src="https://s0.wp.com/latex.php?latex=N&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="N" title="N" class="latex" />. A turtle trajectory with the property that there is at least one left and at least one right turn in every <img src="https://s0.wp.com/latex.php?latex=N&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="N" title="N" class="latex" /> steps will be quasigeodesic; the only full twists will occur when there is a sequence of at least <img src="https://s0.wp.com/latex.php?latex=N&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="N" title="N" class="latex" /> left turns or right turns in a row. This is a very rare occurrence &#8212; it will typically only happen twice in a sequence of <img src="https://s0.wp.com/latex.php?latex=2%5EN&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="2^N" title="2^N" class="latex" /> steps. Hence the variance of the winding number <img src="https://s0.wp.com/latex.php?latex=W_n&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="W_n" title="W_n" class="latex" /> is of order <img src="https://s0.wp.com/latex.php?latex=2%5E%7B-N%7D&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="2^{-N}" title="2^{-N}" class="latex" />. In particular, the graph of the variance is tangent to zero to infinite order along the phase locus, as claimed.</p>
<p style="text-align:left;">(Update:) At Dylan&#8217;s request I&#8217;ve added a slice of the variance graph, at <img src="https://s0.wp.com/latex.php?latex=S%3D0.05&#038;bg=ffffff&#038;fg=000&#038;s=0" alt="S=0.05" title="S=0.05" class="latex" /> with angle varying from 0 to 0.2. The vertical axis has been stretched (relative to the 3d graph above) for legibility. The phase transition is at angle 0.1000417 and I must say the graph looks pretty flat there.</p>
<p style="text-align:center;"><a href="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/phase_slice/" rel="attachment wp-att-1859"><img data-attachment-id="1859" data-permalink="https://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/phase_slice/" data-orig-file="https://lamington.files.wordpress.com/2012/12/phase_slice.jpg" data-orig-size="1166,958" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="phase_slice" data-image-description="" data-medium-file="https://lamington.files.wordpress.com/2012/12/phase_slice.jpg?w=300&#038;h=246" data-large-file="https://lamington.files.wordpress.com/2012/12/phase_slice.jpg?w=1024" class="alignnone size-medium wp-image-1859" alt="phase_slice" src="https://lamington.files.wordpress.com/2012/12/phase_slice.jpg?w=300&#038;h=246" width="300" height="246" srcset="https://lamington.files.wordpress.com/2012/12/phase_slice.jpg?w=300&amp;h=246 300w, https://lamington.files.wordpress.com/2012/12/phase_slice.jpg?w=600&amp;h=492 600w, https://lamington.files.wordpress.com/2012/12/phase_slice.jpg?w=150&amp;h=123 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
]]></html><thumbnail_url><![CDATA[https://lamington.files.wordpress.com/2012/12/turtle_euclid.jpg?fit=440%2C330]]></thumbnail_url><thumbnail_width><![CDATA[440]]></thumbnail_width><thumbnail_height><![CDATA[251]]></thumbnail_height></oembed>