Lab 1: Trees

Recursion is the use of a procedure within itself. The definition is simple, but learning to use recursion takes opportunity and practice; learning it well requires care in the order in which ideas are presented.

Animation shows a fractal tree growing by doubling of the branches at each stageUnit 7 introduces recursion in the context of fractal graphics, i.e., pictures that include smaller versions of themselves. The canonical example is the fractal tree, in which each branch is a smaller sub-tree with branches of its own.

A note on terminology: Technically, no picture of a fractal is a fractal; the picture is just an approximation. A fractal is a limit, so a picture would have to have infinitely many levels. You might want to say this once but, as with any geometric figure, a good approximation shows us enough to picture the limit.

The work on trees walks students through steps that help them overcome the feeling that a recursive call is "cheating" because it uses a block that hasn't been fully written yet. To avoid this confusion, we start with a sequence of simpler (non-recursive) tree blocks, each of which calls the one before it (e.g., tree 2 calls tree 1; tree 3 calls tree 2; and so on.) A few students will want to jump immediately to the recursive version. Unless they are already quite comfortable with recursion from some other learning, it's worth going through this level-by-level once to feel the structure; starting on the next page they'll write recursive procedures directly.

The reason why we do not start with tail recursion, in which the sole recursive call comes at the tail end, like this

countdown(num){if (num=0) {say(Blastoff!)} else {say (num) for (1) secs; countdown(num-1)}}

is that students often misunderstand the recursive call at the end to mean "go back to the beginning." This wrong mental model works for tail recursive blocks, but fails when students confront (or must design) a recursive call that can't be at the end of the definition. Embedded recursion, in which the recursive call isn't the last thing in the script, provides a more resilient introduction.

The repetition on page 1 of is deliberate: the tactile experience of building almost the same script repeatedly helps students notice its structure, and helps them see the virtue of combining them into a single script using recursion. Resist the temptation to teach them shortcuts, like duplicating scripts and adjusting them.)

Pacing

The 4 required lab pages could be split across 2–4 days (70–140 minutes). Expected times to complete follow:
vee calling vee: a tree with many branches ending with square, hexagon or star shaped leaves

Prepare 

Lab Pages

Related Resources:

These resources spend a lot of time with examples that could be done iteratively. They are provided as additional reading for teachers but not recommended for students.

Solutions