1

If $P(n)$ can be proven by strong induction, I know we can strengthen the inductive hypothesis to prove it by regular induction, right? But how would I do this?

atherton
  • 1,234

1 Answers1

3

To prove $P(n)$ by strong induction, define a new predicate $\widetilde{P}(n)$ by: \begin{eqnarray} \widetilde{P}(0) &=& P(0)\\ \widetilde{P}(n + 1) &=& \widetilde{P}(n) \wedge P(n + 1) \qquad n \ge 1 \end{eqnarray} and prove $\widetilde{P}(n)$ by regular induction.

vonbrand
  • 27,812