What is the problem

You have a matrix that u view as a columns matrix, and want to multiply it by a rows matrix .

You want to Compute .

Strategy

  1. highlight each column vector in by a line that also shows its index.
  2. highlight each row vector in by a line that also shows its index.

Their multiplication matrix is then constructed by computing the outer product at every intersection.


Connections