Comment by thaumasiotes
Comment by thaumasiotes 2 days ago
> I think a human will struggle to solve Hanoi using the recursive algorithm for even 6 disks, even given pen and paper.
Why? The whole point of the recursive algorithm is that it doesn't matter how many discs you're working with.
The ordinary children's toys that implement the puzzle are essentially always sold with more than 6 discs.
The recursive solution has a stack depth proportional to the number of disks. That's three pieces (two pegs and how many disks to move) of data for each recursive call, so for 6 disks the "stack" will contain up to around 15 values, which is generally higher than an unaided human will be able to track.
In addition, 64-256 moves is quite a lot and I suspect people will generally lose focus before completing them.