En mis apuntes de instrucción se ha especificado un teorema de transposición de matrices que si hay dos matrices compatibles $A$ y $B$ con respecto a sus sumas y productos, entonces:
$(AB)^T =A^TB^T$
Así que me puse a verificar si efectivamente esto es correcto:
Dejemos que $A = \begin{pmatrix}2 & 2 \\ 6 & 4\end{pmatrix} $
Dejemos que $B = \begin{pmatrix}1 & 0 \\ 7 & 3\end{pmatrix} $
$A^T=\begin{pmatrix}2 & 6 \\ 2 & 4\end{pmatrix} $
$B^T=\begin{pmatrix}1 & 7 \\ 0 & 3\end{pmatrix} $
$(AB) = \begin{pmatrix}2 & 6 \\ 2 & 4\end{pmatrix}\begin{pmatrix}1 & 7 \\ 0 & 3\end{pmatrix}$ = $\begin{pmatrix}16 & 6 \\ 34 & 12\end{pmatrix} $
por lo que $(AB)^T=\begin{pmatrix}16 & 34 \\ 6 & 12\end{pmatrix}$
y.... $A^TB^T=\begin{pmatrix}2 & 6 \\ 2 & 4\end{pmatrix}\begin{pmatrix}1 & 7 \\ 0 & 3\end{pmatrix}=\begin{pmatrix}2 & 32 \\ 2 & 26\end{pmatrix}$
$\therefore (AB)^T\neq A^TB^T $
¿El teorema es incorrecto o me cuesta entenderlo?