The Tower Of Hanoi Puzzle

 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  

Hn=2Hn1+1,InitialConditionH1=1Hn=2Hn1+1,H1=1Hn=2(2Hn2+1)+1=22Hn2+2+1Hn=22(2Hn3+1)+2+1=23Hn3+22+2+1Hn=23Hn3+22+2+1...Hn=2n1H1+2n2++2+1Hn=2n1+2n2++2+1=2n1(GeometricSum1+p+p2+...+p(n1)=(pn1)/(p1))

“ Monks want to transfer 64 gold disks from one peg to another according to rules of Hanoi Puzzle”

They need to perform 264-1 Steps we need about 500 billion years (If 1 move take a Second).

Post a Comment

Please Select Embedded Mode To Show The Comment System.*

Previous Post Next Post