I am working on this proof from my book, and I believe to have solved it. However, proof by inductions still feel funny to me and this question uses more than one variable, so I'm not sure if I have done it correctly. I could not find the answer on the internet, so here I go:
Question
Prove by induction that $\binom{n}{k}$ is always a natural number in Pascals triangle.
My Assertion
$\binom{n}{k}$ will always be a natural number if every $k$ in $[0...n]$ for $\binom{n}{k}$ is a natural number, where n is the row and k is the index.
My Attempted Proof
$$P(x) = \binom{x-1}{k}, k = 0...(x-1)$$
$$P(1) = \binom{0}{0} = 1$$
$$P(z) = \binom{z-1}{k} = \frac{(z-1)(z-2)...((z-1) - k + 1)}{k!}$$
$$P(z+1) = \binom{(z+1)-1}{k} = \frac{z(z-1)...(z-k+1)}{k!}$$
As shown above, $P(1) = 1$ is in $A$ and $P(z+1)$ is in $A$ whenever $P(z)$ is in $A$.
Is this correct? Proof by inductions still seem funny to me, and I couldn't find the answer on the internet nor in my book.
EDIT: The triangle shown in the book is like this one:
