Tuesday, November 3, 2015

Loop-de-loop festival (math games and programming classes)

who: all grades at Baan Pathomtham
when: throughout the school day

First, Apologies! With other obligations, this is over a week late.

Second, I've already written about loop-de-loops here and here. You can find the basic explanations and background there.

In this write-up, I just want to explain how we played with loop-de-loops in the classroom and the reaction of the students. With pictures! Our experiences come in two flavors, based on the two different kinds of classes we were leading:

  • Math games/exploration, for grades 1-3, notes here
  • Programming, for grades 5 and 6, notes here

Math games and exploration

In these classes, I started at the front of the class with a small(ish) whiteboard to show them the simple rules. Following Anna Weltman's instruction page, I drew a 2-3-4 loop-de-loop as follows:
  1. Draw a line up the page for 2 units (I marked ticks to provide a reference for 2 units)
  2. Turn the whiteboard clockwise 90 degrees
  3. Draw a line up the page for 3 units
  4. Turn the whiteboard clockwise 90 degrees
  5. Draw a line up the page for 4 units
  6. Pause and ask the kids what they thought I would do next, with a little discussion, then ...
  7. Turn the whiteboard clockwise 90 degrees
  8. Ask them how long a line I should drawwith a little discussion, then ...
  9. Draw a line up the page for 2 units
  10. Ask them, if I continue this 2, rotate, 3, rotate, 4, rotate, 2, rotate, 3, rotate, etc, will I get back to my starting place? After a little debate amongst the kids with opposing views expressed, I turned them loose to try it out on their own graph paper.
For the rest of the class, the kids asked me for more seeds and/or experimented with their own ideas. A couple are worth noting:
  • 3-5-2: This is on Anna's instruction page. The kids found it surprisingly challenging. The issue comes during one step where you end on a pre-existing line, but not at one of the endpoints. That seemed to make it easy for people to lose their place or get confused about what they should do next.
  • 4 number sequences: both closed loops (like 4-7-4-7) and open ones (1-2-3-4) really interested the kids. I have a (mild) reputation for teasing them, so they were somewhat on the look-out for a twist like this.
  • 6 number sequences: they discovered these on their own or had a more experienced friend suggest them.
Why was this a great activity for the kids?
First, mathematically, there are tons of patterns waiting to be discovered, almost all of which are easily accessible and where the kids can set their own direction for exploration. We will write up an example in next post about the math classes.

Second, this shows some important aspects of mathematics that we often forget: it isn't just about calculating and it has a deep aesthetic (artistic) side.

Programming

The basic introduction was similar for the two programming classes. I showed the essential rules, then the kids drew some loop-de-loops on paper. Of course, the natural next step is writing a program to generate the pictures.

After more or less coaching, all the kids wrote a double for loop to draw their loop-de-loops.

Why was this a great activity for the kids?
First, it was a very natural context to use double for loops, including an outer loop where the steps are just repeated exactly and the other where the iterating variable changes as it moves through a list of step sizes.

Second, repeating, exactly, a list of instructions over and over shows off the power of the machine over hand-calculating. In this sense, it was easier to create programs to draw loop-de-loops than to draw them by hand. When doing them manually, almost all of us occasionally lost track of where we were, turned the wrong way, or made a line the wrong length.

Which brings us to: third, we got to use the computers as a tool to support our own investigation of the loop-de-loop patterns. This was because it was so easy to draw so many versions so quickly. One example was comparing the 1-2-4 shape with the 4-1-2 shape and the 4-2-1 shape. Wait for the next post for another example.

Fourth, when writing their programs, all the kids scaled their drawings.  For example, in the 1-2-4 shape, some chose to make the step lengths 100-200-400, while others chose 25-50-100, while others made different choices. This gave us a chance to talk about these scaling choices and to introduce an explicit scaling variable. Some of this continued into the next class.

Finally, in the 6th grade class, the use of computers gave them free rein to explore much longer and more complicated step sequences than they could have considered by hand.

Pictures

Oh, right, you just wanted to see pictures. Here you go!






No comments:

Post a Comment