-1

What is the purpose of replacing P(n) with P(k) during the inductive step? Isn't n and k representing the same thing? Why can't I just assume that if P(n) is true, then P(n+1) is true?

  • 1
    For ordinary induction you only assume $P(n)$ for the induction step, but for strong induction you assume $P(k)$ for all $k<n$. So this is the reason for replacing $P(n)$ then by $P(k)$. By the way, please use MathJax. Here is a tutorial. – Dietrich Burde Feb 13 '23 at 11:49
  • 2
    You can't "just assume that if $P(n)$ is true, then $P(n+1)$ is true" - you have to prove it. – Henry Feb 13 '23 at 12:06
  • 2
    When teaching the principle of induction it is often easier to explain things by using k and then to work with cases k=n and k=n+1. Otherwise people get confused when substituting n+1 into n and write nonsense like n=n+1. – Jaap Scherphuis Feb 13 '23 at 12:20
  • Firstly, you assume that $n=k$. Then you have to prove that it is also true for $n=k+1$. – ThankYouForFlyingRyanair Mar 03 '25 at 07:03