How can I prove this fact using Linear Algebra:
- A rotation is formed by the composition of two reflections in which the lines of reflection intersect.
- The composition of reflections over two parallel lines is equivalent to a tramslation.
I know that in Linear Algebra a matrix $R$ is a rotation matrix $\iff R^T=R^{-1}$ and $\det R=1$
How to show that $R$ is obtained as a reflection of two reflection?
Any help

If we have two lines $y=kx$ and $y=lx$ (lines through the origin) then reflections across those two are respectively represented with matrix
$$R_1=\begin{bmatrix} {2-k^2\over k^2+2} & {4k\over k^2+2} \\ {2k\over k^2+2}& {k^2-2\over k^2+2} \\ \end{bmatrix}$$ and
$$R_2=\begin{bmatrix} {2-l^2\over l^2+2} & {4l\over l^2+2} \\ {2l\over l^2+2}& {l^2-2\over l^2+2} \\ \end{bmatrix}$$
where $k=\tan \alpha$ and $l=\tan \beta$
While rotation matrix around origin for angle $\varphi$ is $$R=\begin{bmatrix} \cos \varphi & -\sin \varphi \\ \sin \varphi & \cos \varphi \\ \end{bmatrix}$$
So you have to calculate the $${2-k^2\over k^2+2} {2-l^2\over l^2+2}+ {4k\over k^2+2} {2l\over l^2+2}$$ and the result should be $\cos 2(\beta -\alpha)$