Find Linear operator [L] and compute

Haystack
Messages
7
Reaction score
0

Homework Statement


Let L be a linear operator such that:
L[1, 1, 1, 1] = [2, 1, 0, 0]
L[1, 1, 1, 0] = [0, 2, 1, 0]
L[1, 1, 0, 1] = [1, 2, 0, 0]
L[1, 0, 1, 1] = [2, 1, 0, 1]

a) Find [L]

b) Compute L[1, 2, 3, 4]


Homework Equations





The Attempt at a Solution


I used another post on this forum to work on part b (I think) without actually using [L] itself. I expressed [1, 2, 3, 4] as a linear combination of the other vectors (a*[1, 1, 1, 1], b*[1, 1, 1, 0], c*[1, 1, 0, 1], and d*[1, 0, 1, 1]) but I'm not sure where to go from there. Anyways, wouldn't it be easier to just find [L] like it asks and use that? Thanks in advance.
 
Physics news on Phys.org
Any ideas to get me started at least?
 
OK, if you want to calculate only the value of L at (1,2,3,4) then your idea would be worth a try, however, as you have to find L explicitly, you should use that L can be reagarded via some representation as a 4 x 4 matrix, i.e., 16 entries. By calculating with 16 variables, you would ultimately obtain a solution, but I think, it is to boring. So you could try to use the expressions above as well as the fact that L is a linear operator to calculate L acting on each of the basis vectors (1,0,0,0), (0,1,0,0), (0,0,1,0), (0, 0, 0, 1). But I am not quite sure about that. The system of linear equations may be boring to perform but it will ultimately give you the solution. Sp prepare a huge mug of coffee ;)
 
You suggestion to find L(1,2,3,4) is absolutely correct. Dongo's suggestion of finding L is correct, it will be a 4x4 matrix.
 
Have you checked that the vectors (1,1,1,1), (1,1,1,0), (1,1,0,1), and (1,0,1,1) actually form a basis? We need to know that first.

Once that is done, then it's quite simple to find the matrix representation of L. In fact, the columns of [L] have a very straitforward formula...

Here's a hint. Suppose V = \left(v_1,v_2,v_3,v_4\right) is a basis for the vector space. Look at how L operates on a linear combination c_1 v_1 + c_2 v_2 + c_3 v_3 + c_4 v_4 remembering the properites of a linear transformation.
 
Hey thanks for the replies.

Somehow I found L. Although I'm not 100% clear on how I did it...

I started with a matrix of the original vectors that L was acting on, times some 4x4 matrix, and set it equal to a matrix with the solutions of L(v1), L(v2), etc... but transposed.

|1 1 1 1||a b c d| = |2 1 0 0|
|1 1 1 0||e f g h | = |0 2 1 0|
|1 1 0 1||i j k i | = |1 2 0 0|
|1 0 1 1||m n o p| = |2 1 0 1|

Solving gave me the matrix:
|-1 3 1 1|
| 0 0 0 -1|
| 1 -1 0 0|
| 2 -1 -1 0|Which, after transposing, is [L]. (I checked)

In my mind I thought I was doing what I read from y'all. But now I can't figure out what I really did. Seems kinda crazy. Thoughts?
 
OK, suppose

B = \left( (1,1,1,1),(1,1,1,0),(1,1,0,1),(1,0,1,1) \right)

is, in fact, a basis (we still need to check that!). The matrix [L] that you just computed is allegedly the matrix representation of L with respect to B. Let v_1 represent that first basis vector. Its coordinate vector \left[v_1 \right] with respect to B is really easy to compute, right? It's just (1,0,0,0)^T.

Well we have an easy check then. Namely, [L][v_1] should equal the coordinate vector of (2,1,0,0) with respect B.

Does it?
 
Yes it is a basis.

But I'm not sure I follow. In that case wouldn't [L] just be the columns of L(v1), L(v2), ... L(vn)??

I think my problem is that I keep thinking of this as matrix multiplication when it's not
 
Haystack said:
Yes it is a basis.

Good!

But I'm not sure I follow. In that case wouldn't [L] just be the columns of L(v1), L(v2), ... L(vn)??

Jackpot. However, we have to be a bit careful: The columns of [L] are the COORDINATE VECTORS of L(v_1),\ldots,L(v_n) with respect to B. The vectors L(v_1),\ldots,L(v_n) alone are just 4-tuples and it doesn't make much sense to say that they are columns of a matrix...

I think my problem is that I keep thinking of this as matrix multiplication when it's not

There are indeed quite subtle ideas going on here. We need to differentiate between the vector space V of 4-tuples (on which L is a linear operator) and the vector space F^4 of column vectors with 4 entries.

(PhysicsForums doesn't have the LaTeX commands I'm used to for typesetting matrices, so I attached a quick explanation as a .pdf file. See it.)

What is really happening is that when a basis for V is fixed, it allows you to translate the problem from V to F^4 (via the basis and coordinate vectors), perform the computations (matrix multiplications) in F^4, then translate the answer back to V (via the basis and coordinate vectors).

So, the bulk of the computations in solving this problem (at least in part a) are calculating coordinate vectors...
 

Attachments

  • #10
Another thing you could do is look for a combination where:
<br /> (1,0,0,0)=a(1,1,1,1)+b(1,0,1,1)+c(1,1,0,1)+d(1,1,1,0)<br />
Like wise for the other basis vectors and compute
<br /> L(1,0,0,0)<br />
This will give you an easier time of constructing the matrix representation of L.
 
  • #11
This will indeed be the easiest way to solve this problem.
 
  • #12
I really appreciate all the help with this one y'all.

Thanks.
 
Back
Top