mml-book / mml-book.github.io

Companion webpage to the book "Mathematics For Machine Learning"
13.04k stars 2.41k forks source link

ch2 - Inverse and Transpose #640

Closed cprasad111 closed 3 years ago

cprasad111 commented 3 years ago

Describe the mistake Superscript to denote matrix inverse should be -1. Instead -T is used

Location Definition 2.5 Given A = AT (A-1)T = (AT)-1 := A-T

Proposed solution Should the right most expression be A-1 instead of A-T i.e. (A-1)T = (AT)-1 := A-1

AlbertoGuastalla commented 3 years ago

In a symmetric matrix A, the inverse and the transpose operations are commutatives. Therefore this superscript denoting transpose and inverse or inverse and then transpose is correct.

cprasad111 commented 3 years ago

I agree on the inverse and transpose are commutative. I don't understand what A-T means. T means transpose and -1 means inverse. What does -T in the superscript means

AlbertoGuastalla commented 3 years ago

It's a shortcut meaning the composition of transpose and inverse operations.