Linear Algebra: Linear Independence and writing Matrices as linear combinations

mattst88
Messages
28
Reaction score
0

Homework Statement



If linearly dependent, write one matrix as a linear combination of the rest.

\left[\begin{array}{cc} 1&1 \\ 2&1 \end{array}\right] \left[\begin{array}{cc} 1&0 \\ 0&2 \end{array}\right] \left[\begin{array}{cc} 0&3 \\ 2&1 \end{array}\right] \left[\begin{array}{cc} 4&6 \\ 8&6 \end{array}\right]

Homework Equations



The Attempt at a Solution



Choosing coefficients a, b, c, d for the matrices, respectively, I set up 4 equations and 4 unknowns:

row 1 column 1: a + b + 4d = 0
row 1 column 2: a+ 3c + 6d = 0
row 2 column 1: 2a + 2c + 8d = 0
row 2 column 2: a + 2b + c + 6d = 0

From this, I create a 4x5 matrix and using Gauss-Jordan elimination arrive at:

Edit: this is wrong. See below

\left[\begin{array}{ccccc}<br /> 1&amp;0&amp;0&amp;2&amp;0 \\<br /> 0&amp;1&amp;0&amp;2&amp;0 \\<br /> 0&amp;0&amp;1&amp;\frac{4}{3}&amp;0 \\<br /> 0&amp;0&amp;0&amp;0&amp;0 \end{array}\right]

From this, it is clear that the 4 matrices are linearly dependent.

What I do not understand: how do I, given this last matrix, write one of the matrices as a linear combination of the others?

Thanks
 
Last edited:
Physics news on Phys.org
Your last matrix means this:
a = -2d
b = -2d
c = -4/3 d

From this we can deduce that d is arbitrary, so let d = 1.
Then a = -2, b = -2, and c = -4/3.

Put these values into the equation you set up to determine linear dependence and you'll see that one of them is a particular linear combination of the other three matrices.

BTW, when you solved the 4 equations in 4 unknowns, you could have used a 4 x 4 matrix instead of a 4 x 5 augmented matrix. Your 5th column started as all zeroes and never changed.
 
Mark44 said:
Your last matrix means this:
a = -2d
b = -2d
c = -4/3 d

From this we can deduce that d is arbitrary, so let d = 1.
Then a = -2, b = -2, and c = -4/3.

Put these values into the equation you set up to determine linear dependence and you'll see that one of them is a particular linear combination of the other three matrices.

I attempted to check this, but it appears to not work, as the equation generated is not true.

-2a - 2b + \frac{4}{3}c = d

Have I reduced the 4x5 matrix incorrectly or is the problem more fundamental?
 
Last edited:
edit: read the equations wrong
 
It's possible you made a mistake in reducing your 4x5 matrix. If so, that will affect the values of a, b, c, and d.

Assuming for the moment that your work was correct, these values are solutions of the equation
a*M1 + b*M2 + c*M3 + d*M4 = 0, where M1 etc are the 2x2 matrices in your first post, and NOTof the equation -2a -2b + 4/3 c = d.

The a, b, c, and d values should tell you which matrix is a linear combination of the others.
 
Going from the 4 equations/unknowns to the matrix I made a silly mistake causing the row reduced matrix to be incorrect.

The (I think) correct row reduced matrix is

<br /> \left[\begin{array}{ccccc}<br /> 1&amp;0&amp;0&amp;3 \\<br /> 0&amp;1&amp;0&amp;1 \\<br /> 0&amp;0&amp;1&amp;1 \\<br /> 0&amp;0&amp;0&amp;0 \end{array}\right]<br />

From here, I thought I would read out of the matrix the following equations:

a = -3d
b = -d
c = -d
where d is any arbitrary constant.

Assigning d = 1, and checking to see if a * M1 + b * M2 + c * M3 was in fact d * M4, I end up with exactly the wrong signs:

-3\left[\begin{array}{cc}1&amp;1\\2&amp;1\end{array}\right] + -1\left[\begin{array}{cc}1&amp;0\\0&amp;2\end{array}\right] + -1\left[\begin{array}{cc}0&amp;3\\2&amp;1\end{array}\right] = \left[\begin{array}{cc}-4&amp;-6\\-8&amp;-6\end{array}\right]

This must mean that a should equal 3d, b should equal d, c should equal d, without the negatives, but I do not understand why.
 
After thinking about it more, I guess that the a, b, c columns should be partitioned from the d column since I intend to write d * M4 in terms of the other matrices and their respective coefficients.

This would explain the sign error from before.

Can someone confirm?
 
Yes, that's the problem. The a, b, c, and d are coefficients in this equation:
a*M1 + b*M2 + c*M3 + d*M4 = 0. I checked and they work out.
 
Back
Top