Context: I'm studying for my discrete mathematics exam and I keep running into this question that I've failed to solve. The question is as follows.
Problem: The main form for normal induction over natural numbers $n$ takes the following form:
- $P(1)$ is true, and
- for every $n, P(n-1)\to P(n).\qquad\qquad\qquad\text{[Sometimes written as $P(n)\to P(n+1)$]}$
If both 1 and 2 are true, then $P(n)$ is true for every $n$.
The question is to prove the correctness of the form above.
My work: My idea was to make a boolean statement and if it's a tautology in a true false table. That means the statement is always correct.
I've tried many times but I've failed.
Here is the original question in Hebrew:
n טענה כלשהי לגבי מםפר טבעי $P(n)$ תהי
אם מתקימיים שני התנאים הבאים:
1- הטענה $P(0)$ נכונה
2- לכל n>0, $P(n)$ נכונות הטענה $P(n-1)$ גוררת את נכונות הטענה
אז $P(n)$ נכונה לכל מספר טבעי n
הוכיחו את נכונות משפט זה
Your question seems somewhat unclear to me, as it stands, but I'll answer the one in the title, and if the question is updated, I'll address that too.
Mathematical induction can be taken as its own axiom, independent from the other (though, as comments point out, it can be proven as a theorem in common systems like ZF). That is to say, it is more akin to statements like: $$x\cdot (y+1)=x\cdot y + x$$ which are often taken to be part of the definition of multiplication and may not be derivable from more basic statements. The point behind such definitions is to capture some intuitive idea - the above starts to capture the distributive property of multiplication, which we know from intuition to be a reasonable idea. Yet, it is possible that we could not prove the above statement without taking it as an axiom.
Induction basically says every natural number can be "reached" from zero. That is, if we have proven the statements:
Then, we can build a proof for every natural number. For instance, if we wanted to know that $P(5)$ was true, we could infer that, since $P(1)$ is true and $P(1)\rightarrow P(2)$, we have $P(2)$. But $P(2)\rightarrow P(3)$ and $P(3)\rightarrow P(4)$ and $P(4)\rightarrow P(5)$, thus we can deduce $P(5)$ too. Induction merely says that $P(n)$ must be true for all natural numbers because we can create a proof like the one above for every natural. Without induction, we can, for any natural $n$, create a proof for $P(n)$ - induction just formalizes that and says we're allowed to jump from there to $\forall n[ P(n)]$.