Visions of Numberland

An amazing new book turns math problems into shapes and illustrations.

Math and coloring books might seem like an odd pairing. However, the progression of numbers often creates beautiful shapes which, in turn, you can color in.

Visions of Numberland is a recent book by Alec Bellos and Edmund Harriss and published by Bloomsbury. In addition to amazing shapes created by numbers and equations, the book explains how the shapes formed from the math. It’s a fun introduction to often deep mathematical ideas. Their images are inspired by math problems from topology, four-dimensional geometry, statistics, computer science, group theory, and many other disciplines.

But the book is far from boring. And you don’t need an advanced degree to understand the shapes you color or how numbers created the shapes.

This image, for example, visually demonstrates the Collatz Conjecture. Take any number. If it’s an even number, divide it in half to get a result. If it is an odd number, triple it then add one and then divide the result in half. Repeat this process with your result until you get to 1. The Collatz Conjecture says no matter the number you start with, it will always reduce to 1. The reasons this happens might require an advanced degree. But the mystery of what makes any number reduce to 1 is an unsolved mystery.

The image on the right shows a series of number results as they reduce to 2 which then reduces to 1, the single point at the bottom left of the image. The authors created a simple rule to determine the shape and direction of numbers: starting at 2, if the next number up is even the branch bends clockwise while an odd number bends counter-clockwise. Then they removed the numbers from their drawing.

The image shows all numbers below 10000. It’s beautiful in many ways. It looks like seaweed, for one. For another, it’s a great example how a simple math problem can be turned into an interesting visual image.

Want to try this as code? Go to the repl.it website and select Python 3 as the programming language. Then type then run this Python code at the repl.it website:

num = 1234567891011121314151617181920
while num != 1:
  print(“num: %d” % num)
  if num % 2 == 0:
    num = num/2
  else:
    num = (num*3+1)/2
print(“final: %d” % num)

No matter how big a number you set for the num value, it will always reduce to 1. This code also prints all the numbers.

The book is available at most bookstores. In the United States, the book title is called Visions of the Universe. The online version of this article has links to learn more about the book.

Learn More







Author

  • Tim Slavin

    Tim is an award-winning writer and technologist who enjoys teaching tech to non-technical people. He has many years experience with web sites and applications in business, technical, and creative roles. He and his wife have two kids, now teenagers, who are mad about video games.

Also In The June 2017 Issue

Can we measure the time and steps required for things to happen?

This Canadian experiment used a robot to explore how people respond to robots and technology.

An amazing new book turns math problems into shapes and illustrations.

This pen and paper project helps organize ideas into stories with a finite state machine.

While you can't use soap and water on your code, you can keep your code as sparkly clean as any dish or silverware.

This project explores the basics of using Google's Static Map software to display your own maps.

Most people love cookies. But these cookies are the kind that make the internet possible.

Links from the bottom of all the June 2017 articles, collected in one place for you to print, share, or bookmark.

Interesting stories about computer science, software programming, and technology for June 2017.

Software languages don't magically appear. They're created by design. First in a series.

Interested but not ready to subscribe? Sign-up for our free monthly email newsletter with curated site content and a new issue email announcement that we send every two months.

No, thanks!