Proving the Existence of a Rotation Matrix from Given Relations

AI Thread Summary
The discussion centers on proving that a 2x2 matrix A, which is orthogonal (ATA = I) and has a determinant of -1, can be expressed in terms of trigonometric functions. The key steps involve evaluating the products AAT and ATA to derive equations for the matrix entries a, b, c, and d. It is essential to establish that a^2 + b^2 = 1, which allows for the identification of an angle θ such that a = cos(θ) and b = sin(θ). The challenge lies in navigating the proof without relying on eigenvalues or vectors, as those topics have not been covered. Ultimately, the goal is to demonstrate the existence of such an angle θ for any matrix A meeting the specified conditions.
whatisreality
Messages
286
Reaction score
1

Homework Statement


Let A∈M2x2(ℝ) such that ATA = I and det(A) = -1. Prove that for ANY such matrix there exists an angle θ such that

A = ##
\left( \begin{array}{cc}
cos(\theta) & sin(\theta)\\
sin(\theta) & -cos(\theta)\\
\end{array} \right) ##

It is not sufficient to show that this matrix satisfies the specified relations.

Homework Equations

The Attempt at a Solution


Where do I start with this?! I'm supposed to get from ATA = I to the rotation matrix! I have looked at several proofs online. But they seem to either use eigenvalues and vectors (which we haven't done, so can't use them!) or don't mention the properties I've been given.

I know a few things that might be useful.
##(A^T)^{-1} = (A^{-1})^T##
And ##det(A^T) = det(A)##
Also, I know that the matrix A is orthogonal.

Don't know how to start!
 
Physics news on Phys.org
whatisreality said:

Homework Statement


Let A∈M2x2(ℝ) such that ATA = I and det(A) = -1. Prove that for ANY such matrix there exists an angle θ such that

A = ##
\left( \begin{array}{cc}
cos(\theta) & sin(\theta)\\
sin(\theta) & -cos(\theta)\\
\end{array} \right) ##

It is not sufficient to show that this matrix satisfies the specified relations.

Homework Equations

The Attempt at a Solution


Where do I start with this?! I'm supposed to get from ATA = I to the rotation matrix! I have looked at several proofs online. But they seem to either use eigenvalues and vectors (which we haven't done, so can't use them!) or don't mention the properties I've been given.

I know a few things that might be useful.
##(A^T)^{-1} = (A^{-1})^T##
And ##det(A^T) = det(A)##
Also, I know that the matrix A is orthogonal.

Don't know how to start!

Start with
A = \pmatrix{a &b \\ c& d}

Evaluate ##P_1 = A A^T## and ##P_2 = A^T A##. You need both ##P_1 = I## and ##P_2 =I##, and those will give you several equations that the entries ##a,b,c,d## must satisfy. You also need ##\det(A) = 1##, giving you ##ad - bc = 1##.
 
  • Like
Likes whatisreality
If you have ##a^2 + b^2 = 1##, can you show that there exists ##\theta## such that ##a = cos\theta## and ##b = sin\theta##?
 
Ray Vickson said:
Start with
A = \pmatrix{a &b \\ c& d}

Evaluate ##P_1 = A A^T## and ##P_2 = A^T A##. You need both ##P_1 = I## and ##P_2 =I##, and those will give you several equations that the entries ##a,b,c,d## must satisfy. You also need ##\det(A) = 1##, giving you ##ad - bc = 1##.
Got there. Thank you!
 

Similar threads

Back
Top