Express this 2x2 matrix as a linear combo of thoes other 2x2 matricies

Click For Summary

Homework Help Overview

The discussion revolves around expressing a given 2x2 matrix as a linear combination of other specified 2x2 matrices. Participants are exploring the implications of linear combinations within the context of linear algebra, particularly focusing on the relationships between the matrices involved.

Discussion Character

  • Exploratory, Mathematical reasoning, Assumption checking

Approaches and Questions Raised

  • The original poster attempts to multiply each matrix by a scalar and add them, expressing concern about the completeness of their approach. Other participants question the matrices used in the linear combination and suggest that the problem may involve a system of equations derived from matrix equality.

Discussion Status

Participants are actively engaging with the problem, with some providing guidance on how to set up the equations based on matrix equality. There is an acknowledgment of the complexity involved in solving the equations, particularly regarding the number of equations versus unknowns.

Contextual Notes

There is a mention of the challenge posed by having four equations for three unknowns, indicating a potential issue with spanning the relevant space. The original poster expresses uncertainty about the problem's requirements, which may affect their approach.

mohdhm
Messages
42
Reaction score
0
http://xmlearning.maths.ed.ac.uk/lecture_notes/vector_spaces/linear_span_set/linear_span_set.php

Problem 1.29 #3------------------------

Hello guys, I've been given a problem like the one above in my assignments and I'm not really sure what the final answer is supposed to be like. So far here is what I've done: just multiplied each 2x2 matrix by a scalar and added them up... this question is worth 20 marks and i get a sense that it is incomplete, what am i missing here?

http://img507.imageshack.us/img507/4354/linalgar1.png
http://g.imageshack.us/g.php?h=507&i=linalgar1.png

Does this look right? I've never come across anything like that in my books and it's worth 20 marks so i have to be careful. any input you give will be appretiated
 
Last edited by a moderator:
Physics news on Phys.org
I must be looking at the wrong problem because I don't recognize any of the matrices you used in the linear combination. But in principle, you could do it that way and you'd get a system of four equations in three unknowns that should have a unique solution (e.g. one of them is dependent on the others), of course, you want to give that solution as well.

For example, if the question was, express the vector [3, 4, 2] as a linear combination of the vectors {[1, 0, 0], [0, 1, 0], [1, 0, -1]} you could of course write down an arbitrary linear combination
a [1, 0, 0] + b [0, 1, 0] + c [1, 0, -1]
but that would not do, of course. You would have to work it out:
[a, 0, 0] + [0, b, 0] + [c, 0, -c] = [a + c, b, - c]
should be equal to [3, 4, 2] so you get
a + c = 3
b = 4
- c = 2
Solving the system gives
a = 5, b = 4, c = -2
so the final answer would be:
[3, 4, 2] = 5 [1, 0, 0] + 4 [0, 1, 0] - 2 [1, 0, -1].

Now try this with the matrices.
 
Your matrix equation is, as you give,
[tex]\left[\begin{array}{cc}h+k & 3j+ k \\ 3h+ k & j+ k\end{array}\right]= \left[\begin{array}{cc} 5 & -1 \\ 11 & 1\end{array}\right][/tex]
which, since two matrices are equal if and only if corresponding terms are equal, is the same as the four equations, h+ k= -5, 3j+ k= -1, 3h+ k= 11, and j+ k= 1.

Of course, you can't in general solve four equations for three unknowns- 3 matrices can't span this 4 dimensional space. But it is possible that the given matrix is in the subspace spanned by them.

Go ahead and use any three of the equations to solve for j, h, and k, then put the values into the fourth equation to see if there is a solution.
 
ah thanks for your help guys.