question about 3x3 matrix

ncc1701d

Member
Joined
Aug 9, 2009
Messages
204
Reaction score
6
Points
18
Hello
I have this 3 x 3 matrix. I am just learning them and I get confused. Please pardon the verticle line placement. I gets out of wack.

| cos(theta) 0 -sin(theta) |
| 0 1 0 |
| sin(theta) 0 cos(theta) |


and then I have this second matrix below where the sign in "sin(theta)" have switched.
Is the second matrix an "inverse" of the first? or a "transpose" of the first? both or neither?


| cos(theta) 0 sin(theta) |
| 0 1 0 |
| -sin(theta) 0 cos(theta) |



If it was a 2x2 matrix and signs reverse it would be "inverse" but I am uncertain about 3x3 matrix.
thanks.
 

Quick_Nick

Passed the Turing Test
Donator
Joined
Oct 20, 2007
Messages
4,088
Reaction score
204
Points
103
Location
Tucson, AZ
You have a rotation matrix about the Y axis. Rotation matrices happen to be "orthogonal matrices" which means (among other things) that the inverse and transpose are the same.
 
Top