Improving $$x_{n+1}=g(x_n)=x_n-\frac{f(x_n)}{φ(x_n)} $$ we create Aitken's method
$$ x_n*=\frac{x_{n+2}x_n-x_{n+1}}{x_{n+2}+x_n-2x_{n+1}}$$
But why does it converge faster than the initial method?
Improving $$x_{n+1}=g(x_n)=x_n-\frac{f(x_n)}{φ(x_n)} $$ we create Aitken's method
$$ x_n*=\frac{x_{n+2}x_n-x_{n+1}}{x_{n+2}+x_n-2x_{n+1}}$$
But why does it converge faster than the initial method?
Your specific equation (of which I think you missing a square) is derived from
$$z_{{n+1}} = x_n - \frac{\left(\Delta x_n\right)^2}{\Delta^2 x_n} = G(z_n) \Rightarrow z_{n+1} - G(z_n) = \frac{\left(\Delta x_n\right)^2}{\Delta^2 x_n}.$$
In terms of the original function $g(z)$ you want to solve you can write
$$z - G(z) = \frac{\left(g(z) - z\right)^2}{g(g(z)) - 2g(z) + z}.$$
From the study of the difference $z - G(z)$ you can derive what are you looking for. There are two results
Both proofs, at least the way I know to prove both, are mostly calculation involved but not difficult.
The order $p$ of convergence is expressed in terms of
$$ \lim_{n\rightarrow + \infty} \frac{|x_{n+1} - \alpha|}{|x_n - \alpha|^p} $$