Consider the function $$F(x) = (b - Ax)^T(b - Ax) + \alpha x^T x $$ where $A$ is a real $ m \times n$ matrix and $\alpha$ is a positive real number. We want the minimum point of $F$ for given $A$, $b$, and $\alpha$. Show that $$F(x + h) - F(x) = (Ah)^T(Ah) + \alpha h^T h >= 0$$ for $h$ a vector of order $n$, provided that $$(A^T A + \alpha I)x = A^Tb$$ This means that any solution of this linear system minimizes $F(x)$; hence, this is the normal equation.
I'm not really sure how to show solve this problem using the method of Least Squares. I have $$f(x) = \underbrace{(b - Ax)^T(b- Ax)}_{||b - Ax||^2} + \alpha \underbrace{x^T x}_{||x||^2}$$ but from here I don't really know what to do. For $$ x = \frac{ A^Tb}{(A^T A + \alpha I)}$$, does that... minimize $$F(x + h) - F(x) = (Ah)^T(Ah) + \alpha h^T h$$ ?
I'm confused