Suppose we have two matrices A and B of the same dimension (so we can add them).
Then (A+B)T=AT+BT.
To see this, let’s consider an example with the following matrices:
A=[1−20−34−6],B=[60−21−4−1].
Then:
(A+B)T=([1−20−34−6]+[60−21−4−1])T=[7−2−2−20−7]T=7−20−2−2−7.
Note that:
AT=104−2−3−6,BT=6−2−401−1.
So:
\begin{align*}
A^T + B^T &= \begin{bmatrix} 1 & -2 \\ 0 & -3 \\ 4 & -6 \end{bmatrix} + \begin{bmatrix} 6 & 0 \\ -2 & 1 \\ -4 & -1 \end{bma
...