Finding a basis of a vector set by finding redundant vectors

Integrate

Junior Member
Joined
May 17, 2018
Messages
129
There's a method in finding basis vectors that I don't understand conceptually.


Let me show an example.


#1

[math]A = \begin{bmatrix} 1 & 2 & 3 & -1 \\ 3 & 5 & 8 & -2 \\ 1 & 1 & 2 & 0 \end{bmatrix}[/math]

[math]B=\begin{bmatrix}1 & 0 & 1 & 1 \\0 & 1 & 1 & -1 \\0 & 0 & 0 & 0\end{bmatrix}[/math]
#2

[math]\begin{bmatrix}x_1 \\x_2 \\x_3 \\x_4\end{bmatrix} = \begin{bmatrix}-x_3 - x_4 \\-x_3 + x_4 \\x_3 \\x_4\end{bmatrix}= x_3 \begin{bmatrix}-1 \\-1 \\1 \\0\end{bmatrix}+ x_4 \begin{bmatrix}-1 \\1 \\0 \\1\end{bmatrix}[/math]

#3 [math]x_1 A_1 + x_2 A_2 + x_3 A_3 + x_4 A_4 = 0[/math]

[math](-2x_3 + x_4)A_1 + (3x_3 - 2x_4)A_2 + x_3A_3 + x_4A_4 = 0[/math]
#4 This is where I start getting lost, not that I was completely there to begin with.


We set [math]x_{3}=1[/math] [math]x_{4}=0[/math] and get
[math](-2)A_1 + 3A_2 + A_3 = 0[/math]

And we get [math]2A_1 - 3A_2=A_3[/math]
#4

We then set [math]x_{3}=0[/math] [math]x_{4}=1[/math] and get [math]-A_1 + 2A_2 = A_4[/math]


Because both these vectors can be created using A_1 and A_2 we remove them and deduce A_1 and A_2 is a basis set?



What are the concepts of this method, and why do we choose the values that we do?
 
Last edited:
Top