Numb3d by Numbers—a must see kid’s science exhibition about measurement, counting, and stats

Mitzi and I just visited Antonietta Mira in Lugano. We went to talk about applying her delayed rejection algorithm to Hamiltonian Monte Carlo and partial momentum refresh Metropolis-adjusted Langevin.

Numb3d by Numbers

We were absolutely blown away when Antonietta took us on a tour of her science museum exhibition on probability, statistics, and simulation (Diamo I Numeri! in Italian, Numb3d by Numbers in English, which are not quite direct translations). If I had seen this when I was a kid, you wouldn’t have been able to tear me away from the exhibits until I’d figured each one out. The kids that were there when we were touring were all enthralled.

Here’s a description of the exhibit (in English): Numb3d by Numbers. And here’s a short video in Italian, which shows how beautiful the exhibits are: Diamo I Numeri!

The exhibits

Among the exhibits Mitzi and I recall (and we were only there for an hour or so!):

  • the coolest, largest-scale Galton board I’ve ever seen
  • a horse race with two six-sided dice and horses numbered 2–12
  • the towers of Hanoi
  • number writing systems that had kids translate their age
  • ancient games of counting
  • a magic trick with a giant deck of cards (see below)
  • population pyramids where people put their number down
  • crowdsourced guesses of jars of regular and irregular items
  • visualizations with strings of what you’re good and bad about to see trends
  • tangrams and other shape-based puzzles
  • magic squares with all the math
  • combinatorics and growth of possibilities
  • real-time counters, scales, and how they need to be contextualized
  • emergent patterns like dragonfly wings and sunflower illustrations of Fibonacci sequences
  • randomness and patterns
  • parity and how shepherds count goats
  • positive predictive accuracy of diagnostic tests using frequencies rather than probabilities
  • abacuses and calculating methods

The exhibits are aimed at kids, but they also work for adults and some of them even for young kids. It’s set up in a beautiful hillside science museum (all of Lugano is amazingly beautiful, being situated on a crystal clear alpine lake). The exhibition is designed to be led by a science educator, though it’s also possible to do a self-guided tour.

On the road

The great news is that Antonietta and crew just got a grant to translate the exhibit into English and German (it’s now in Italian) and take it on the road. She’s looking for collaborators interested in bringing it to their home towns. If you have any interest in stats education for kids, this is a golden opportunity.

A probabilistic card trick

I was fascinated by the probabilistic card trick (Antonietta’s a mathemagician and did a bunch of other card tricks for us). Kids divide up a deck of cards and lay them out end to end in any order (these were huge cards so the deck made a winding path through the exhibits). Then kids chose different starting points in the first five cards and stood on the card they chose. Then each proceeds to move along the path (down the deck), each time advancing by the value of the card on which they were standing (cards 1–9 had their natural values, ace, 10, jack, queen, king all count as 1). The science educator conducting the tour tells the kids where they’ll land before they start.

So the question is how does this work? If you’re used to thinking about simulation, you may understand the theory of why this is likely to happen. Mitzi and I had to put on our Stan(islaw Ulam) hats to work out how probable the trick is to work by simulation. I’ll leave it as an exercise for the reader (and provide a solution in a follow-up post).

A horse race

I really liked the horse race because it involved dice and was very graphic and tactile. Kids all get a pair of really big dice and the horses are numbered 2–12. Each time a horse’s number comes up, it advances one step. The first horse to take 20 (?) steps wins. Of course, the 7 horse is the strong favorite, especially with a lot of steps. We didn’t get around to doing the simulation for that one, but it’d be a nice exercise to introduce discrete Monte Carlo methods.

2 thoughts on “Numb3d by Numbers—a must see kid’s science exhibition about measurement, counting, and stats

  1. Here is a quick attempt at the horse-race simulation:

    “`
    race <- setNames(rep(0, 11), 2:12)
    while(all(race < 10)) {
    winner <- as.character(sum(sample(1:6, 2, replace = TRUE)))
    race[winner] <- race[winner] + 1
    barplot(race, ylim = c(0, 10))
    Sys.sleep(.1)
    }
    “`

Leave a Reply

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