1

Is there an intuitive explaination of the matrix $A^T A$? I have seen this in many field and it is also a matrix with a lot of good properties. Is there some intuitive explaination of it or a name for it?

maple
  • 2,883
  • 2
  • 29
  • 37

1 Answers1

6

These matrices are sometimes referred to as Gram matrices.

One way to think about it is to note that the $i,j$ entry of $A^TA$ is the dot-product of columns $i$ and $j$ from $A$.

Most of the "nice properties" come out of the fact that $A^TA$ is always positive semidefinite (and symmetric). Conversely, every (symmetric) positive semidefinite matrix is a Gram matrix.

Ben Grossmann
  • 225,327