Search |
Tower of HanoiThe Tower of Hanoi puzzle is an engaging and challenging problem for middle school students and an application of exponential functions. It also is the setting for an elegant proof by mathematical induction that the minimum number of moves M to move n disks from one disk to another is given by M = 2^n - 1. Here is a Java implementation of the same puzzle.
|