Given:
$$ W = \{(x, y, z, w) \in R^4 \ |\ x \ + 2y + w = 0 \ and \ y - w = 0 \ \} $$
And the use of the standard dot product. How do I find the orthonormal basis of W and then extend that to a four dimensional Basis of R ?
Given:
$$ W = \{(x, y, z, w) \in R^4 \ |\ x \ + 2y + w = 0 \ and \ y - w = 0 \ \} $$
And the use of the standard dot product. How do I find the orthonormal basis of W and then extend that to a four dimensional Basis of R ?
On
The space you are interested in is the null space of $$ A=\left[\begin{array}{rrrr} 1 & 2 & 0 & 1 \\ 0 & 1 & 0 & -1 \end{array}\right] $$ The reduced row-echelon form of $A$ is $$ \DeclareMathOperator{rref}{rref}\rref(A)= \left[\begin{array}{rrrr} 1 & 0 & 0 & 3 \\ 0 & 1 & 0 & -1 \end{array}\right] $$ This tells us that $\vec x\in W$ if and only if $$ \vec x= \left[\begin{array}{r} x \\ y \\ z \\ w \end{array}\right]= \left[\begin{array}{r} -3\,w \\ w \\ z \\ w \end{array}\right]= z \left[\begin{array}{r} 0 \\ 0 \\ 1 \\ 0 \end{array}\right]+w\left[\begin{array}{r} -3 \\ 1 \\ 0 \\ 1 \end{array}\right] $$ This shows that $$ \left\{\left[\begin{array}{r} 0 \\ 0 \\ 1 \\ 0 \end{array}\right],\left[\begin{array}{r} -3 \\ 1 \\ 0 \\ 1 \end{array}\right]\right\} $$ is a basis of $W$. To extend this basis to a basis of $\Bbb R^4$, consider the matrix $$ M=\left[\begin{array}{rr|rrrr} 0 & -3 & 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 1 & 0 & 0 \\ 1 & 0 & 0 & 0 & 1 & 0 \\ 0 & 1 & 0 & 0 & 0 & 1 \end{array}\right] $$ The reduced row-echelon form of $M$ is $$ \rref(M)=\left[\begin{array}{rr|rrrr} 1 & 0 & 0 & 0 & 1 & 0 \\ 0 & 1 & 0 & 0 & 0 & 1 \\ 0 & 0 & 1 & 0 & 0 & 3 \\ 0 & 0 & 0 & 1 & 0 & -1 \end{array}\right] $$ The pivots in $\rref(M)$ are in the first four columns. Thus the first four columns of $M$ form a basis of $\Bbb R^4$.
Do you see how to use this to complete your problem?
On
Well, I think you want an basis of $\mathbb{R}^{4}$ which contains an orthonormal basis of W.
You could use the following procedure:
I hope my answer helps! If you need any theoretical detail, just let me know!
Cheers!
Let the matrix $A$ be,
$$A = \begin{pmatrix} 1 & 2 & 0 & 1 \\ 0 & 1 & 0 & -1\end{pmatrix}$$
Then $W$ comprises of the vectors $v = (x,y,z,w)^{T} \in \mathbb{R}^4$ such that,
$$Av = 0$$
In other words, $W$ is nothing but the null space of $A$, $N(A)$. The basis of $N(A)$ comprises of vectors,
$$(-3,1,0,1)^{T} \text{ and } (0,0,1,0)^{T}$$
which are independent and happen to be orthogonal. Divide the two vectors by their norms and you will get orthonormal basis of $W$.
Now, to extend them to basis of $R^4$, you must realize that the row space of $A$ (i.e. $C(A^T)$) is orthogonal complement of $N(A)$. So, you need to find the basis of $C(A^T)$ and combine the vectors in it with above vectors to get basis of $R^4$. It turns out that the two rows of $A$ form the basis of the $C(A^{T})$ because they are linearly independent and span the $C(A^T)$.
P.S. I am revising Linear Algebra so there might be a better solution.