Topics

Matrix inner product extends vector inner product to matrices. Treat matrices as stacked column vectors, then compute inner product between these long vectors

Key properties:

  • Generalizes dot product to matrices
  • Measures “alignment” between two matrices
  • Used in matrix norms and optimization problems

Example

Frobenius inner product for :

Let:

  1. Element-wise multiplication:
  2. Sum all products:

Using trace formula:

Result is same:

Note

This matches vector inner product when matrices are single column vectors