Finding inverse of matrix with trig values

fend
Messages
8
Reaction score
0
Find the inverse of the rotation matrix

cos(theta) -sin(theta)
sin(theta) cos(theta)

I have no problems finding the inverse of a standard 2x2 matrix, however I am confused by the trig functions.

I guess the determanent would be 2cos(theta) and I would end up with

1/2cos(theta)*(the above 2x2 matrix)

Any assistance is greatly appreciated.
 
Physics news on Phys.org
I think you made a sign error in applying the determinant formula.
 
Frankly, it appears you have no clue what you are doing. Pretty much you say is wrong. The determinant is NOT "2 cos(theta)", it is (cos(theta))(cos(theta))- (sin(theta))(-sin(theta))= cos^2(theta)+ sin^2(theta)= 1.

And the inverse of a matrix is NOT the determinant time the "above matrix", it is the determinant times the matrix made of the minors of the original matrix.

For this particular problem, the simplest way to find the inverse is to recognize that this matrix represents rotation, about the origin, through an angle theta. And that the inverse ("reverse") matrix is rotation about the origin through angle -theta.
 
Well it's no different to doing this for any other matrix :smile:

For a 2x2 matrix

a b
c d

the determinant is ad-bc, yes?

So for your example you should have sin^2\theta+cos^2\theta=1 so actually, the inverse of your matrix is exactly the same. (edit: but you switch the signs for the sin\theta's.)
 
Thank you for all the responses. The subject has been clarified and I appreciate the assistance provided.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...

Similar threads

Back
Top