I am confused with how to show that an orthogonal matrix with determinant 1 must always be a rotation matrix.
My approach to proving this was to take a general matrix $\begin{bmatrix}a&b \\c&d\end{bmatrix}$ and using the definition of a matrix being orthogonal, work out some restrictions on $a,b,c,d$ such that the matrix must be a rotation matrix.
Doing this; I end up with $\begin{bmatrix}a&b \\c&d\end{bmatrix}^T\begin{bmatrix}a&b \\c&d\end{bmatrix}=\begin{bmatrix}a^2+c^2&ab+cd \\ab+cd&b^2+d^2\end{bmatrix}=\begin{bmatrix}1&0 \\0&1\end{bmatrix}$
We also know $ad-bc=1$ from the determinant restriction.
I thought we could say since $a^2+c^2=1$ then we could say $a=\cos(\theta)$ and $c=\sin(\theta)$. From here we could chose the second column of the matrix to a vector such that $b=-\cos(\pi/2-\theta)$ and $d=\sin(\pi/2-\theta)$ which gives $b=-\sin(\theta)$ and d=$\cos(\theta)$.
This would give $\begin{bmatrix}\cos(\theta)&-\sin(\theta) \\\sin(\theta)&\cos(\theta)\end{bmatrix}$ which is the rotation matrix I need to show.
Is this correct and is there a better approach to help me prove that any orthogonal matrix with determinant 1 must be a rotation matrix?
EDIT:
We can say $a=\cos(\theta)$ and $c=\sin(\theta)$ as we know $a^2+c^2=1$ and so $a$ and $c$ must lie on the unit circle, hence we can parameterise the variables in the matrix as such.