Natural numbers and the succesor function S are defined according to the Peano axioms.
Addition is defined recursively (DIFFERENTLY from the traditional Peano definition, though I am trying to prove that they are equivalent):
$\forall a:a+0=a$
$\forall a \forall b:a+S(b)=S(a)+b$
I tried and failed to prove this by induction on a.
Consider the set of numbers that verify every property. Let's set: $M=\{n\in \mathbb{N}:n+0=0\}$. $0$ is trivially in $M$. We suppose that there is a natural number $n$ that verifies the given property. Since the sum is defined recursively we have: $$ S(n)+0=n+S(0)=n+1=S(n) $$ The other statement is proved similarly.