What is the difference of Rotating counterclockwise by origin by $\theta$ and rotating clockwise by origin through $\theta$? And what are their formulas? I know that for counterclockwise rotation, the formula is
$$T = \left(\begin{array}{rr}\cos(\theta) & -\sin(\theta)\\\sin(\theta) & \cos(\theta) \end{array}\right)$$
But what is the formula for clockwise rotation?
You have a mapping $T:[0,2\pi) \rightarrow \mathbb{R}^2$. If you want to rotate clockwise, then just rotate by $-\theta$ radians. So $$ S(\theta)=\left[ \begin{array}{cc} cos(\theta) & sin(\theta)\\ -sin(\theta) & cos(\theta) \\ \end{array} \right] $$ where I'm using the fact that $cos(.)$ is an even function and $sin(.)$ is an odd function.