Order of matrix multiplication

165 Views Asked by At

My textbook states that $$A^T = (SDS^{T})^{T} = (S^T)^TD^TS^T$$

where S is an orthogonal matrix and D is a diagonal matrix. But shouldn't it be

$$A^T = (SDS^{T})^{T} = S^TD^T(S^T)^T$$? Why and when are we allowed to rearrange the order of the matrices?

1

There are 1 best solutions below

0
On

It's not rearrangement ; this relation is valid:

$(AB)^T=B^TA^T$

for any two matrices $A,B$.