Matrix Addition and Transposition: How to Solve for Equal Variables

  • Thread starter Thread starter g.lemaitre
  • Start date Start date
  • Tags Tags
    Linear Transpose
g.lemaitre
Messages
267
Reaction score
2

Homework Statement



Screenshot2012-07-19at122059AM.png


Screenshot2012-07-19at122110AM.png


here is the answer:

Screenshot2012-07-19at122124AM.png



The Attempt at a Solution



I can't figure out how the matrix listed above in the answer is supposed to add up to -1. that's the only way that a and b can equal each other, that is, if they both add up to -1.
 
Physics news on Phys.org
how the matrix listed above in the answer is supposed to add up to -1

What precisely do you mean by this? What matrices add up to (summing the elements?) is not something I would think of as a meaningful quantity.

Are you disputing that u_1 \cdot v_1 = -1? That seems to be true. 2 - 1 - 2 = -1, after all. When you transpose u_1 and multiply it by v_1 on the right, you get the same answer. Some people probably take this method of transposing and multiplying as a definition of the inner product of vectors precisely because it sums and multiplies corresponding elements in this manner.

Finally, the matrix might be referred to as the outer product of the vectors. Notice that the diagonal elements consist of the same terms you get when you compute the dot product, and they too sum to -1.
 
Muphrid said:
When you transpose u_1 and multiply it by v_1 on the right, you get the same answer.


I thought you get

[2 1 -1]
[-2 -1 1]
[4 2 -2]

Even if you don't, then the book has that listed as an answer. what does it refer to?
 
The book has listed the answers to parts a-c and the extra question at the end of the line all in one statement. That is, what they have may be more clearly written as

Answer to (a): -1
Answer to (b): [-1]
Answer to (c): (the matrix that you see)
Answer to "Which two are equal?": (a) and (b)

It may be hard to parse what they wrote, but this is sadly pretty common.

When you transpose u and multiply by v, you get

u_1^T v_1 = \begin{bmatrix} 1 & -1 & 2 \end{bmatrix} \begin{bmatrix} 2 \\ 1 \\ -1\end{bmatrix}

Check your understanding of matrix multiplication to see that the final dimensions must be 1x1, not 3x3, for this case.
 
Muphrid said:
Answer to (c): (the matrix that you see)

What does that even refer to? If the final dimensions of uT are 1 x 1, then what does that 3 X 3 matrix even refer to?
 
g.lemaitre said:
What does that even refer to? If the final dimensions of uT are 1 x 1, then what does that 3 X 3 matrix even refer to?

u^T is not 1x1. u^T v is. u^T is 1 row by 3 columns.

The 3x3 matrix is the result of u v^T, a 3 row, 1 column matrix times a 1 row, 3 column matrix, or [3x1][1x3]. Usually one is taught that the "inner" dimensions must match, and the result has the dimensions of those that are left over. In this case, the 1s match, 3x3 is what's left over.
 
well if u^T v is a 3x3 matrix then how can it add up to -1 so that it equals u*v which also = -1?
 
u and v are both 3x1.

u^T v is 1x1 and is equal to [-1].

uv^T is not the same thing. It is the 3x3 matrix you've been seeing. There is no reason for it to add up to -1. It's diagonal elements, however, can, should, and do add up to -1.
 
ok, i got it.
 
Back
Top