Consider the Double Tower of Hanoi game. It contains $2n$ disks of $n$ different sizes, arranged in decreasing size from bottom to top on the left most peg. The rules and solving criteria from the original game apply. Let $T$ be the number of moves needed to solve the Tower of Hanoi problem and $D$ the number of moves needed to solve the Double Tower game. Explain why $2T$ is an upper bound for $D$
I get stuck at what they mean by upper bound, as the original game takes a minimum of 7 moves. Which is computed with the algorithm $2^{n} - 1~where~n=3$. So $T = 7$ but if I do $2 * 7 = 14$, it is far less than the number the algorithm would get you which is 63... am I missing the point of what the question is asking? If so what is the point?