Consider a 2 player game where there are two rows of dots with row 1 having $n_1$ dots and row 2 having $n_2$ dots. The players can remove any number of dots from their row during their turn but the number they remove must be greater than 0 and the current player can only remove the dots from one row. The player who is forced to remove the last dot loses.
If $n_1 = n_2$ and both are greater than $0$, prove by strong induction that it is possible for the second player to win. What happens if $n_1$ and $n_2$ are not equal?
Starting with the proof, for the base case I assume that $n=2$. In this case, the game could proceed as such: For a player 2 winning strategy, player 1 removes 1 dot, player 2 removes two dots, and player 1 removes 1 dot, so he loses.
The inductive hypothesis I came up with is that $\forall i \leq k$,if $n_1=n_2=i$, then player 2 wins. Since this is strong induction, this assumes for up to $k$ dots.
However, the inductive step is where I'm lost. I want to prove for $k+1$ dots. How would I go about doing this? Can you explain your thought process through each part of solving the inductive step?
As stated the claim is false because the first player wins $n_1=n_2=1$ by taking either dot and forcing the second player to take the last. You need $n_1=n_2 \ge 2$ for a second player win. Your base case is only half done. You have shown one choice for the first player leads to a second player win, but need to show that the other one does, too. It works the same way.
Strong induction says you assume the truth of a statement for all values up to $k$, then prove it is true for $k+1$. If you have $n_1=n_2=k+1$ the first player can take $k+1, k,$ or less than $k$ dots. If he takes $k+1,$ the second player takes $k$ and wins. If he takes $k,$ the second player takes $k+1$ and wins. If he takes less than $k$ there will be at least $2$ dots left in the row he took from. The second player then takes the same number from the other row, leaving two equal rows of at least two dots, which we have assumed is a second player win, so $n_1=n_2=k+1$ is a second player win.