trace-operator

07-09-2022 || 17:32
Tags: #linear-algebra

trace-operator

Trace operator is the sum of all the diagonal entries of a matrix

Tr(A)=i=1nAi,i

Trace operator gives another way of writing frobenius-norm of a matrix

||A||F=Tr(AAT)

Properties of Trace operator:

  1. Trace operator is same for the transpose matrix
Tr(A)=Tr(AT)
  1. In trace operator calculation, you can move the last factor to the first and the resulting value would be same. The resultant matrix should be square in that case
Tr(ABC)=Tr(CAB)=Tr(BCA)
  1. The cyclic permutation holds even if the resulting matrix has different shape, like for Anm and Bmn,
Tr(AB)=Tr(BA)

even if AB is a nn matrix and BA is a mm matrix

  1. Trace of a scaler value is also a scaler
Tr(a)=a

References