- The transformation matrix for rotating a tensor by an angle $\theta$ is given by:
\[
R = \begin{pmatrix}
\cos \theta & \sin \theta \\
-\sin \theta & \cos \theta
\end{pmatrix}
\]
- To apply the rotation to the original matrix, we use the transformation rule for tensor rotation:
\[
T' = R^{-1} T R
\]
where $R$ is the rotation matrix and $T$ is the tensor matrix.
- For the given tensor:
\[
T = \begin{pmatrix}
0 & 1 \\
1 & 0
\end{pmatrix}
\]
- After applying the rotation matrix and calculating, we get:
\[
T' = \begin{pmatrix}
\sin 2\theta & \cos 2\theta \\
\cos 2\theta & -\sin 2\theta
\end{pmatrix}
\]