I am quite new to $\lambda$-calculus.
In order to proof any statement $P(n)$ in $\lambda$-calculus for all Church numerals $n$, is it sufficient to proof $P(0)$ and $P(n) \rightarrow P(succ \; n)$?
(Using $0:= \lambda fx.x$ and $succ := \lambda nfx.f(nfx)$.)
Wouldn't it be necessary to proof first that $0$ is the successor of no numeral and that $succ$ is injective?
If this is the case, how can you proof the injectiveness of $succ$ without recurring to induction? All proofs I have seen so far, rely on the internal structure of Church numerals ($\lambda fx.f^n x$) but how can we assume that all Church numerals have this form without induction? (What is this exponent $n$ even? Some concept of natural number we are taking from outside of $\lambda$-calculus?)
This question is motivated by the fact that e.g. in ZF you first proof that 0 has no predecessor and that the successor function is injective and until that moment you take the jump to Peano arithmetics and gain access to induction. Maybe my error is to seek similarities between ZF and $\lambda$-calculus where there are none.