Linear Modulus Art

I saw this fantastic webpage a couple of months back.

Screenshot 2015-04-28 at 11.30.56 AM

Tons of fun. I took that idea and made a gif for my weird art Tumblr, Recursive Processing.

tumblr_nm56rdMlvl1uppablo1_r3_400

 

Here’s the processing.org code and the live (and smoother) version, and here’s the more fun version that is interactive based on the mouse position (some interesting polar math is involved here, x = r cos (theta) and y = r sin (theta) ).

These all work on the same principle, take a bunch of points around a circle, and shift them around the circle based on a linear function. If the output is too large, then they wrap around (clock math). The formal name for this idea is modular arithmetic, a very useful concept in computer programming. A quick example: Take an input value of x = 120, and a function of y = 3x + 20 (mod 360). y = 3 (120) + 20 (mod 360) = 380 (mod 360) = 20 (the remainder after dividing by 360). So make a line between 120 on the circle and 20. The resulting image after calculating 360 different points for y = 3x + 20 is:
Screenshot 2015-04-28 at 11.44.15 AM
But this concept is more difficult to grasp with the unusual step of graphing the points around a circle.

Separate Input from Output

Lets go to a more straightforward representation. Here’s an interactive that might help.
Screenshot 2015-04-28 at 11.50.06 AM
So, this is just about the least interesting function, y = x (mod 10). So if x = 3, then y = 3 + 0 (mod 10) = 3. So draw a line from 3 to 3. Try the interactive yourself, click to change the function and see how it changes the picture.

Here’s another boring function: y = 0x + 0 (mod 10).
Screenshot 2015-04-28 at 11.50.51 AM

Ok, lets get to the interesting stuff, y = 7x + 8 (mod 10). Take x = 4, so y = 28 + 8 (mod 10) = 36 (mod 10) = 6. Draw a line from 4 to 6.
Screenshot 2015-04-28 at 11.50.20 AM

 

Here’s another interesting picture:

Screenshot 2015-04-28 at 11.51.45 AM

If you really enjoy the picture that you’ve made then you can get a high definition version (5k by 5k) by copying the code, installing processing.org and clicking any key. The image will be in the same file as project. Very good for printing in large form if you’re lucky enough to have a big printer.

Here’s a much more interactive version of this same concept. The mouse’s horizontal direction changes the slope of the line, and the vertical direction changes the offset (y-intercept).

Questions For You

How can I bring this into the math classroom?

Where does this fit?

Is modular arithmetic in anyone’s curriculum? If not, why not?

Should I (or you) put together a non-linear version? Exponential, powers, logarithmic?

Other thoughts?

This entry was posted in Full Posts and tagged , , . Bookmark the permalink.

4 Responses to Linear Modulus Art

  • Pingback: Tracking Venus and Earth over 8 years | A Recursive Process

  • Pingback: Sample Post: Tracking Venus and Earth over 8 years | Math Projects

  • Leave a Reply

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