[Math] What does the superscript $t$ in this matrix addition problem mean

linear algebramatrices

I know matrix addition is pretty easy – for a problem like $$\begin{bmatrix} a&b\\c&d\end{bmatrix}+\begin{bmatrix}e&f\\g&h\end{bmatrix}$$ The solution is $$\begin{bmatrix} a+e&b+f\\c+g&d+h\end{bmatrix}$$
However, I am working through some problems in this pdf and I can't seem to figure out what is meant by the following problem (pg 51, problem C10 part 3):

Let $B=\begin{bmatrix} 3&2&1\\-2&-6&5\end{bmatrix}$ and $C=\begin{bmatrix}2&4\\4&0\\-2&2\end{bmatrix}$

Find $B^t + C$.

My first thought was, oh, they're not the same shapes, so I can't add them. But it gives a solution. So what does the superscript $t$ mean?

Any help would be appreciated. Thanks!

Best Answer

In this context, $t$ refers to the transpose of a matrix. In particular, you should find that $$ B^t = \pmatrix{3&-2\\2&-6\\1&5} $$

Related Question