[Math] Proof by Induction: Puzzle Pieces Problem

discrete mathematicsinduction

There's a thought puzzle I am struggling to understand that deals with the fundamentals of writing a proof involving the inductive assumption.

A jigsaw puzzle is solved by putting its pieces together in the correct way. Show that exactly $n−1$ moves are required to solve a jigsaw puzzle with $n$ pieces, where a move consists of putting together two blocks of pieces, with a block consisting of one or more assembled pieces.

So, a proof by PMI would look something like this:

I will verify this hypothesis is true for at least one value of $n$:

Consider:

pieces: $n=1$ and fits: $n-1=0$ (valid)

pieces: $n=2$ and fits: $n-1=1$ (valid)

pieces: $n=3$ and fits: $n-1=2$ (valid)

I will assume the hypothesis holds true from $n=3$ up to some arbitrary value $k$ ie. $k$ pieces will have $k-1$ fits. I will now prove true for $k+1$ pieces to show $k$ fits.

It is at this part of the proof that confuses me. Clearly, during the last fit, the two subsections of the puzzle, arbitrary denoted as $p$ and $q$ must comprise the $k+1$ pieces as part of the inductive assumption. Also, each subsection also took $p-1$ fits and $q-1$ fits respectively, but I don't really know how to combine all this knowledge together to mathematically show $k$ fits.

Any help would be greatly appreciated! Thanks!

Best Answer

By definition, notice that $p + q = k + 1$. By the induction hypothesis, the last two blocks required $p - 1$ and $q - 1$ fits, respectively. Adding in the last fit, we conclude that the total number of fits is: $$ (p - 1) + (q - 1) + 1 = (p + q) - 1 = (k + 1) - 1 = k $$ as desired.

Related Question