Suppose that
$$ \left( \begin{matrix} 1 & 0 & 1 \\ 1 & 1 & 0 \\ 0 & 1 & -1 \\ \end{matrix}\right) $$
calculate the maximum and minimum value of ||Ax|| on the sphere {x ∈ $R^3$: ||x|| = 1}.
I have $A^TA$ is symmetric then use it to get the max and min.But how to show the norm of $\mathbf Ax$
Another method that I find easier (but specialized to this situation only) is using the eigenvalue method. You want to find the maximum and minimum of $||Ax||$. Note that this is the same as optimizing $||Ax||^2 = (Ax)\cdot (Ax) = (Ax)^T(Ax) = x^T A^T Ax$ which is a quadratic form with associated matrix $A^TA$. It is known that for a quadratic form and associated matrix $Q$ , the maximum value on the unit sphere is equal to the largest eigenvalue of $Q$ and the minimum value on the unit sphere is equal to the smallest eigenvalue of $Q$. If we calculate $A^TA$ we get $$ \left( \begin{matrix} 2 & 1 & 1 \\ 1 & 2 & -1 \\ 1 & -1 & 2 \\ \end{matrix}\right) $$ whose smallest eigenvalue is $0$ and largest eigenvalue is $3$. This is the minimum and maximum of $||Ax||^2$, so the minimum and maximum value of $||Ax||$ are $0$ and $\sqrt{3}$.