The Tower Of Hanoi Puzzle (Nineteen Century)
There are 3 pegs . Initially the first peg has n disks that are placed in order of size.
Rule: Allow disks to be moved one at a time from one peg to another as long as a disk is never placed on top of a smaller one.
Goal: Move all disks to the other pegs.
Example:
Let Hn denotes the number of moves needed to solve the Tower of Hanoi puzzle.
Transfer the top n-1 disks. This can be done in Hn-1 steps. Transfer the largest disk (one step). Then transfer the (n-1) pegs on the largest disk (This can be
done in Hn-1ways).
Thus
“ Monks
want to transfer 64 gold disks from one peg to another according to rules of
Hanoi Puzzle”
Tags:
Combinatorial