I was studying Elementary Number Theory by David Burton and came across the first and second principle of Finite Induction.
The First Principle of Finite Induction was stated as -
Let $S$ be a set of positive integers with the following properties:
- The integer $1$ belongs to $S$.
- Whenever the integer $k$ is in $S$, the next integer $k + 1$ must also be in $S$.
Then $S$ is the set of all positive integers.
The Second Principle of Finite Induction was stated as -
Let $S$ be a set of positive integers with the following properties:
- The integer $1$ belongs to $S$.
- If $k$ is a positive integer such that $1 , 2, \dots , k$ belong to $S$, then $k + 1$ must also be in $S$.
Then $S$ is the set of all positive integers.
Going by the definition of First Principle, if $1$ belongs to $S$ then $1+1=2$, $2+1=3$ and all other positive integers should also belong to $S$. This is the requirement for Second Principle. Thus, they look quite similar to me. So, why is the Second Principle needed after all?
Edit:-
I gathered from the answer and comments that the First Principle is weak induction and the Second Principle is strong induction. But, I am still confused why this distinction is made if they are equivalent.