I dont get how these matrices are mulitiplied together

  • Thread starter Thread starter cs23
  • Start date Start date
  • Tags Tags
    Matrices
AI Thread Summary
The discussion focuses on the multiplication of two matrices, H10 and H21, which represent rotations around the z-axis using trigonometric functions. The calculated product of these matrices is confirmed to be correct, demonstrating the combination of two rotations. It is noted that if the sine and cosine values are normalized, they can be interpreted as angles, leading to a simplified understanding of the resulting rotation. The final product aligns with the trigonometric identities for the cosine and sine of the sum of angles. The conversation emphasizes the importance of proper matrix multiplication over the less useful "component by component" product.
cs23
Messages
64
Reaction score
0

Homework Statement


H10 =
c1 | -s1 | 0
s1 | c1 | 0
0 | 0 | 1

H21 =
c2 | -s2 | 0
s2 | c2 | 0
0 | 0 | 1



Homework Equations


this is what i did

H10H21 =
c1c2 -s1s2 | -c1s2 - s1c2 | 0
s1c2 + c1s2 | -s1s2 + c1c2 | 0
0 | 0 | 1

The Attempt at a Solution



this is the answer

H10H21 =

c1c2 | -s1s2 | 0
s1s2 | c1c2 | 0
0 | 0 | 1
 
Last edited:
Physics news on Phys.org
Unless that is some other information that you have not given, your answer is correct.
Note, by the way, that if c_1^2+ s_1^2= 1 and c_2^2+ s_2^2= 1, or if you divide each term of the matrices by that, we can interpret c_1 and s_1 as the cosine and sine of some angle, \theta and can interpret c_2 and s_2 as the cosine and sine of some other angle, \phi and so these two matrices as rotation, about the z-axis, through those angles. The product would be the combination of those two rotations, a rotation through angle \theta+ \phi and then we have c_1c_2- s_1s_2= cos(\theta)cos(\phi)- sin(\theta)sin(\phi)= cos(\theta+ \phi) and s_1c_1+ c_1s_2= sin(\theta)cos(\phi)+ cos(\theta)sin(\phi)= sin(\theta+ \phi) as we should have.

(What you give as the "answer" is sometimes called the "component by component" product but it does NOT have any good algebraic properties and is very seldom used.)
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Back
Top