I'm writing a linear algebra exam soon and I'd like to know a fast way to solve a task like that:
$$u=\begin{pmatrix} 0\\ 0\\ 1 \end{pmatrix}, v= \begin{pmatrix} 1\\ 0\\ 1 \end{pmatrix}, w = \begin{pmatrix} 0\\ 1\\ 1 \end{pmatrix}$$
Show that $(u,v,w)$ is a basis of the vector space $\mathbb{R}^{3}.$
I would start by checking if these vectors are linearly independent. I do this by checking determinant $\neq 0$:
Using Sarrus rule, we know that determinant is $1$ and thus these vectors are linearly independent.
Now let $x,y,z \in \mathbb{R}$
$$\begin{pmatrix} x\\ y\\ z \end{pmatrix}=\lambda_{1}\begin{pmatrix} 0\\ 0\\ 1 \end{pmatrix}+ \lambda_{2}\begin{pmatrix} 1\\ 0\\ 1 \end{pmatrix}+ \lambda_{3}\begin{pmatrix} 0\\ 1\\ 1 \end{pmatrix}$$
$$x = \lambda_{2}$$
$$y = \lambda_{3}$$
$$z = \lambda_{1}+\lambda_{2}+\lambda_{3}$$
The solution is unique too and thus $(u,v,w)$ is a basis of the vector space $\mathbb{R}^{3}$
Did I solve the task correctly and can you tell me better ways if there are some?
