Need some intuition, I'm new to the world of Linear Algebra... (I know how to do most of the linear algebra operations but don't know the complete geometric meaning of them).
So, I have a $3\times3$ matrix A, which I'm multiplying on the left with the rotation matrix in the z direction, and on the right with the inverse rotation matrix in the z direction.
That is, $$ T = \begin{bmatrix} \cos(\theta) & \sin(\theta) & 0 \\ -\sin(\theta) & \cos(\theta) & 0 \\ 0 & 0 & 1 \end{bmatrix} $$
And, I want to compute:
$$ B = T\times A\times T'$$.
So, when I multiply $T\times A$, I get all the columns of $A$ rotated clockwise by $\theta$ about the $z$-axis.
Now, what do I get when I multiply this new matrix, $T\times A$ with $T'$?
What does it mean geometrically?
(I know that $A$ and $B$ have the same trace, and although I can do it through computation, I need to feel it geometrically to understand it thoroughly.)
Assuming that by $T'$ you mean the transpose or inverse of $T$ (those are the same in this specific case), you're thinking about the multiplication in the wrong order. Let's apply $B$ to a vector and see what we get:
$T'$ rotates the vector by $-\theta$. However, it is more common to turn this around and say that it rotates the basis by $\theta$ (i.e. it rotates the coordinate system without moving any vectors). Then we apply $A$ in this new coordinate system, and then $T$ rotates the coordinate system back.
All in all, $B$ is what you get if you look at what the linear transformation $A$ does to any points in your space, but impose a different coordinate system.
For instance, let $$A = \begin{bmatrix}2&0&0\\0&1&0\\0&0&1\end{bmatrix}$$Then in our current coordinate system, $A$ stretches space along the $x$-axis.
Now, put a new coordinate system on our space. One such that the coordinate axes are rotated $-\theta$ about the $z$-axis compared to the old one. Then the same linear transformation doesn't stretch space along the $x$-axis any more, but rather along some diagonal line in the $xy$-plane. This same linear transformation in the new coordinate system is represented by the matrix $B$.