Matrix dimension of a vector in R4

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 5K views
Nicksto
Messages
2
Reaction score
0

Homework Statement


Let W be the subspace of R4 defined by W={x:V^TX=0}. Calculate dim(w) where
V=(1 2 -3 -1)^T
note: V^T means V Transpose, sorry I don't know how to do transpose sign in here.


Homework Equations





The Attempt at a Solution


I tries to do it (1 2 -3 -1)(x1 x2 x3 x4)^T=0
x1+2(x2)-3(x3)-x4=0
So does it means dim(w)=1 ?
 
on Phys.org
Nicksto said:

Homework Statement


Let W be the subspace of R4 defined by W={x:V^TX=0}. Calculate dim(w) where
V=(1 2 -3 -1)^T
note: V^T means V Transpose, sorry I don't know how to do transpose sign in here.


Homework Equations





The Attempt at a Solution


I tries to do it (1 2 -3 -1)(x1 x2 x3 x4)^T=0
x1+2(x2)-3(x3)-x4=0
So does it means dim(w)=1 ?

No. I will use a,b,c,d instead of the subscripted x's to save typing. You have ##a+2b-3c-d=0##. Solving for ##a## gives ##a=-2b+3c+d##. So$$
\left(\begin{array}{c} a \\ b \\ c \\d \end{array}\right) =
\left(\begin{array}{c} -2b+3c+d \\ b \\ c \\d \end{array}\right) =
b\left(\begin{array}{c} -2 \\ 1 \\ 0 \\0 \end{array}\right) +
c\left(\begin{array}{c} 3 \\ 0 \\ 1 \\0 \end{array}\right) +
d\left(\begin{array}{c} 1 \\ 0 \\ 0 \\1 \end{array}\right)

$$
Does that give you a hint about the dimension?
 
Last edited:
It's 3 right? thanks man