$ \textbf{Question:} $ If an experiment can be performed in $ k $ steps such that the first step can be done in $ n_{1} $ ways, the second step can be done in $ n_{2} $ ways, ..., and the last step can be done in $ n_{k} $ ways, then the total number of ways to perform this experiment is $ n_{1} + n_{2} + \dots + n_{k}. $
Here is the proof using strong induction for this $ \textbf{false} $ statement, can someone help me find the error in the proof?
$ \textbf{Proof:} $ Let $ P(k) $ be the statement that "if an experiment can be performed in $ k $ steps such that the first step can be done in $ n_{1} $ ways, the second step can be done in $ n_{2} $ ways, ..., and the last step can be done in $ n_{k} $ ways, then the total number of ways to perform this experiment is $ n_{1} + n_{2} + \dots + n_{k}. $"
Base case: If the experiment only has $ 1 $ step, then there is $ n_{1} $ ways to do it, so $ P(1) $ is true. Now suppose that $ P(1),P(2), \dots, P(k) $ is true for $ k > 1. $ Consider $ P(k + 1), $ since if the experiment has $ k + 1 $ steps, it can be done by first doing the first $ k $ steps following by the $ k + 1 $ steps, thus the total number of possible ways to do the experiment is $ (n_{1} + n_{2} + \dots + n_{k}) + n_{k + 1} $ (since $ P(2) $ is true). Hence $ P(k + 1) $ is true as well.
The induction step fails. Think about $P(2)$. You have $n_1$ ways to do the first step. For each of those, you have $n_2$ ways to do the second step. The proof misses the point that you then have $n_1n_2$ instead of $n_1+n_2$ ways to do the first two steps.