I here define the hierarchy of basic mathematical operators and their respective "inverse" operation (see hyperoperation).
$$ \begin{array}{c|c|c|} & \text{Operator} & \text{"Inverse"} \\ \hline \text{Incrementation} & a+1 & a-1 \\ \hline \text{Addition} & a+b & a-b \\ \hline \text{Multiplication} & ab & \frac{a}{b} \\ \hline \text{Exponentiation} & a^b & \sqrt[b]{a} \\ \hline \text{Tetration} & ^ba & \sqrt[b]{a}_s \\ \hline \text{} \vdots & \vdots & \vdots \\ \hline \end{array} $$
Now, it is clear that each "level" is simply the previous one except the process is done several times. Adding two integers is like incrementing one integer many times. Multiplication is addition of the same number many times.
My question is: does anything precede incrementation?