So I have been reading countless posts on extending a matrix basis, however I still am unable to grasp it and apply what I've read to my problem.
w1 = [1,0,-2,3] w2 = [1,-2,3,-1] w3 = [1,-8,4,0]
W = sp(w1, w2, w3)
With the above provided, I was asked to find a basis for W, which I solved to be:
{$[1,0,-2,3]^T$, $[1,-2,3,-1]^T$, $[1,-8,4,0]^T$}
I got this answer by reducing the matrix formed by w1, w2, and w3, and checking for linear independence, then selecting the pivot columns.
Anyways, the question I am stuck on is how do I now extend this basis for $R^4$? As I mentioned previously, I have read multiple previous questions on extending a basis. However I am still confused and unable to apply what I read previously to this question.
Any help is appreciated!