Hypocycloid juggling patterns

I’ve been having fun experimenting with interesting visual patterns that emerge when multiple points are moved around hypocycloids. I ended up writing a Bridges conference paper on the topic, but the animated quality of the results is so crucial that it seemed absolutely necessary to create a web page to showcase the results. I had initially created animated GIFs, but I took the opportunity to use Javascript to build interactivity directly into the page, deeply inspired by the Parable of the Polygons, by Vi Hart and Nicky Case.

This post is an informal overview of a (slightly) more technical paper I’ve written for the 2016 Bridges conference. The paper includes all the necessary math to understand and reproduce these diagrams.

Hypocycloids

Imagine rolling a small circle around the inside of a large circle (which we’ll assume has radius 1 from now on). Mark a point on the edge of the small circle, and watch the path traced by that point as it rolls.

An example of a hypocycloid traced out by rolling motion. Here the small circle is one third as big as the large one, creating a special hypocycloid called a deltoid. Click on any animated figure to pause it.

You’ll find that the point moves along a path called a hypocycloid, which looks like a bunch of arcs that meet in cusps on the edge of the enclosing circle. If we assume that the big circle has radius 1, the particular shape of hypocycloid you get depends on the radius of the smaller circle rolling in it. The most interesting shapes are the ones that result when the small circle’s radius is a rational number, say p/q where p and q are positive integers. In that case you get a shape with q cusps. If p>1, the shape crosses over itself and looks like a star:

p/q=1/7

p/q=2/7

p/q=3/7

Interestingly, every point tracing out a hypocycloid can be glued on to two different small circles. The red circles above are one possibility for each of the points shown. Each one has radius p/q and rolls clockwise around the big circle while rotating counterclockwise around its own centre. But every such point also lies on a blue circle of radius 1-p/q, which rotates in the opposite direction at a different speed:

p/q=1/7

p/q=2/7

p/q=3/7


Here, make your own hypocycloids and experiment with showing and hiding the red and blue circles that hold the moving point:

Use the p and q sliders to experiment with different hypocycloids. If you set p to be larger than q then the small wheel becomes larger than the large one, and the shape traced out is properly called a hypercycloid.

Moving multiple points

Every hypocycloid can be described by a function Hp,q(t). You can think of the variable t as being the “time”; you plug different times into the function, and it spits out different 2D positions for the point as it traces out the hypocycloid. When t gets to 2πp, the path closes on itself.

If we want to draw N points travelling around the same hypocycloid, we can just choose a bunch of t values that are evenly spaced in the range [0,2πp], and plug them all into Hp,q. For example, if we draw q evenly spaced points, they’ll dance around the hypocycloid in synch:

p/q=1/8, N=8

p/q=3/8, N=8

Where this gets really interesting, though, is when the choices of p, q and N conspire to put multiple points on the same small circle as it rolls around. For example, consider p=2, q=5, N=2:

p/q=2/5, N=2. The two points are mapped to the same rotating circle.

It turns out that these coincidences will arise any time that p and N have a factor in common. But even when they don’t, patterns can still arise. Consider p=2, q=5, N=3, first with no circles showing the hidden order:

p/q=2/5, N=3. It's easy to see the points moving together.

Do you see the three points locked into an equilateral triangle? The structure arises because even though the points lie on different red wheels, they’re on the same blue wheel, which has to do with the factors in common between N and qp.

p/q=2/5, N=3

p/q=2/5, N=3

So then, what happens when N has factors in common with both p and qp? The answer is every bit as lovely as we might hope: we get points lying on shared circles in both directions simultaneously! Stare at the pattern below and see if you can spot pairs of points moving together in one direction and triangles moving in the other direction. Turn the circles on and off if you need help.

p/q=2/5, N=6. Try to spot patterns of points on both clockwise and counterclockwise circles.

When I’ve shown this to math friends, many of whom are jugglers, they felt that the patterns of moving points were reminiscent of patterns in juggling. Accordingly, I call these “hypocycloid juggling patterns”. My personal favourite is p=3, q=4, N=12. You should be able to spot triangles moving in one direction and squares in the other. Check your perception by enabling the red and blue circles!

p/q=3/7, N=12.

It’s tempting to refer to this as an optical illusion, though of course it isn’t—the points really are arranged into both sets of shapes simultaneously. It’s just a pretty visual pattern that arises spontaneously through the mathematical structure of hypocycloids. Still, there is a real connection to the vagaries of human perception. The fact that we can look at coordinated motion of a few points and get a clear sense of a rotating shape is a powerful aspect of perception. In Gestalt psychology we might refer to these structures as having common fate: because they move in synch, we group them together visually.

Want to experiment with other combinations? Use the fully interactive drawing below. Have fun!

Click on the icon in the top-left corner of the animation to open up a control panel.

Production notes

This is the first time I’ve written more than about two lines of Javascript. I used P5.js, a Javascript library inspired by the Processing development environment. I translated code I had previously written in Processing to P5.js, which was mostly easy except for the user interface components (which requires coordination between CSS, HTML, JS, and WordPress—ouch). I suspect the result is pretty inefficient; the diagrams seem to lag occasionally. I would be interested in speeding up the page. Perhaps there’s an easy way to pause any diagrams that are scrolled off-screen? If you’re interested, check back later for improvements.

I suppose it’s also desirable to make animated GIFs available so that these patterns can be viewed without relying on the Javascript embedded on this page. Visit this static page for an archive of many animated GIFs that you are welcome to view, use, copy, and so on.

Want to know more? Read the complete paper on this subject.




Leave a Reply to R James B Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.