Hints

Use these only after trying the exercises.

MATH-C03-C-001

Read the row index first, then the column index.

MATH-C03-C-002

Column 2 is the second vertical list.

MATH-C03-C-003

For matrix multiplication, the middle dimensions must match. The output keeps the outside dimensions.

MATH-C03-C-004

Check whether the middle dimensions match.

MATH-C03-C-005

The first output entry uses the first row of the matrix.

MATH-C03-C-006

One product entry comes from one row and one column.

MATH-C03-C-007

Transpose swaps rows and columns.

MATH-C03-C-008

A diagonal matrix scales coordinates separately.

MATH-C03-C-009

For WxWx, the output length is the number of rows of WW.

MATH-C03-C-010

Use the phrase "row dot product."

MATH-C03-C-011

Check the middle dimensions first. Then keep the outside dimensions.

MATH-C03-C-012

The batch size stays on the outside. The output-feature count comes from the last dimension of the weight matrix.