Find an orthonormal basis of the plane $x_1 - 5x_2 - x_3 = 0$
I'm having trouble with this problem.
So I picked the vectors $u_1 = \begin{bmatrix}1\\0\\1\end{bmatrix}$ and $u_2 = \begin{bmatrix}5\\1\\0\end{bmatrix}$ then I found
norm = $\sqrt{1+0+1} = \sqrt{2}$
I also found that norm$_2 = \sqrt{5+1+0} = \sqrt{6}$ so then i thought my orthonomal basis would be
$\begin{bmatrix}\frac{1}{\sqrt{2}}\\0\\\frac{1}{\sqrt{2}}\end{bmatrix}, \begin{bmatrix}\frac{5}{\sqrt{6}}\\\frac{1}{\sqrt{6}}\\0\end{bmatrix}$
but it is saying it is incorrect
An $\color{red}{\textrm{ortho}}\color{blue}{\textrm{normal}}$ set of vectors is $\color{red}{\textrm{orthogonal}}$ and each vector in it is $\color{blue}{\textrm{normalized}}$.
Your set has neither of those properties.
To orthogonalize your set, use the Gram-Schmidt process.
To normalize a vector $\mathbf v$, you divide the vector by its norm: $\frac{\mathbf v}{\|\mathbf v\|}$, where the norm of the vector $\mathbf v = (v_1, \dots, v_n)$ is defined as $\|\mathbf v\|:= \sqrt{{v_1}^2 + \cdots + {v_n}^2}$.