I have a function, $$f(\mathbf{x})=x_1^2+4x_2^2-4x_1-8x_2,$$
which can also be expressed as $$f(\mathbf{x})=(x_1-2)^2+4(x_2-1)^2-8.$$ I've deduced the minimizer $\mathbf{x^*}$ as $(2,1)$ with $f^*=-8$ by finding the gradient $$\nabla f(\mathbf{x})=(2x_1-4,8x_2-8).$$
I understand that method of steepest descent is defining $$z(t)=\mathbf{x}-t\nabla f(\mathbf{x})$$ $$g(t)=f(z(t))$$ and then setting $g'(t)=0$ and solving for $t$ in terms of $x_1$ and $x_2$. I am asked to start from $\mathbf{x_0}=(0,0)^T$. I can iterate multiple times and I am assuming $f$ will not reach $f^*$. However I am lost in how to prove that this method diverges with a succinct proof.
