I have a statement $P(x,y,z)$ in natural numbers and I want to prove using mathematical induction and I managed to prove the following steps
1) $P(1,1,1),P(1,2,1)$
2) $P(x,1,z)\land P(x,2,z)\land P(x,3,z)\land \cdots \land P(x,y,z) \implies P(x+1,y,z)$
3) $P(x,y,z) \land P(x -1,y+1,z) \implies P(x,y+1,z)$
4) $P(x,y,z) \land P(x+1,y -1,z) \implies P(x,y,z+1)$
Is my statement proved? My doubt is on step 2 because the premise also includes $y+1$. If $P$ is not proved by above 4 steps, then which steps I need to work on more to prove my statement $P$?