Given vector $x'$ and positive definite matrix $W$, let $$ f(x) := (x-x')^TW(x-x') $$ Show that $f$ is monotonically increasing, i.e. if $y-x' > x-x'$ component-wise, then $f(y) > f(x)$.
I do not know how to approach this. I do not know how to use the positive definiteness of $W$.
This is not true if $y \geq x$ is taken to be a componentwise condition -- at least not without further restrictions A simple counterexample is with $x' = 0$, $$ W = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}, \\~\\ x = (-1, -1), \\~\\ y = (0, 0), $$ then $y \geq x$ and $x^T W x = 2$ but $y^T W y = 0$.
Or in case you are worried about the use of vectors with negative entries in the previous example, here is one in which $x, y \geq 0$. Take $ W = \begin{pmatrix} 2 & -1 \\ -1 & 1 \end{pmatrix}$, $x = (1, 0)$ and $y = (4/3, 1)$.