Given matrics $A = \begin{bmatrix}1 && 5 && 2 \\ -1 && 0 && 1 \\ 3 && 2 && 4\end{bmatrix}$ and $B = \begin{bmatrix}6 && 1 && 3 \\ -1 && 1 && 2 \\ 4 && 1 && 3\end{bmatrix}$, find $-3\mathop{Tr}(A-3B)$.
I am not exactly sure what is $-3\mathop{Tr}(\cdot)$, but I did till $(A-3B)$ part.
Where $3B = \begin{bmatrix}18 && 3 && 9 \\ -3 && 3 && 6 \\ 12 && 3 && 9\end{bmatrix}$, and $A-3B$ is $\begin{bmatrix}-17 && 2 && -7 \\ 2 && -3 && -5 \\ -9 && -1 && -5\end{bmatrix}$
How do I apply the $-3\mathop{Tr}(\cdot)$ to $(A-3B)$?
Thanks for the help!