Given the following function of two variables
$$f(x, y) = 2x^2 − 2xy + y^2 + 2x − 2y$$
I wanted to use Newton's method to find a minimum of this function. I started from $(x_1, y_1) = (0, 0)$ and applied the following formula
$$x_{k+1} = x_k - \alpha \left(\nabla(f(x_k)^{2}\right)^{-1} \nabla(f(x_k))$$
where
$$ \alpha = \frac{\nabla(f(x_k))^{T} \nabla(f(x_k))}{\nabla(f(x_k))^{T}(\nabla(f(x_k)^{2})\nabla(f(x_k)) }$$
I obtained $(x_2, y_2) = \left(0, \frac{1}{5}\right)$ and $(x_3, y_3) = \left(0, 0\right)$. So I decided to check by induction if in general we have $(x_{2k}, y_{2k}) = \left(0, \frac{1}{5}\right)$ and $(x_{2k+1}, y_{2k+1}) = (0, 0)$. It turns out that this is true, so I will never obtain a minimum for $k \rightarrow \infty$. Can anyone explain me this strange behaviour of this method.
$f(0,1)=-1$.
We'll prove that it's a minimal value.
Indeed, we need to prove that $$2x^2+y^2-2xy+2x-2y\geq-1$$ or $$2x^2-2(y-1)x+y^2-2y+1\geq0$$ or $$x^2+(x-y+1)^2\geq0.$$ Done!