I read about Primitive recursion and was able to understand most of it.
However I am finding it very difficult to understand the second axiom of primitive recursion.
I can make out that it helps in defining definitions in a recursive manner. I am also able to write the primitive recursive definitions of some trivial functions myself. But am still not very clear about what the axiom actually says.
Could someone give an explanation or point to a good resource for reading the same ?
I meant the second axiom in this (taken from Wikipedia) :

Let us maybe try a few examples.
Addition, written in prefix form as $+(y,x_1)$, is primitive recursive since $+(0,x_1)=x$ and $+(y+1,x_1)=S(+(y,x_1))$. We can make the argument fully explicit by exhibiting $f,g$ as in the Wikipedia link:
Multiplication $\times(y,x_1)$ can be similarly defined by $\times(0,x_2)=0$ and $\times(y+1,x_1)=\times(y,x_1)+y$: