Hints

Use these only after trying the exercises.

MATH-C02-C-001

Read the vector entries in order.

MATH-C02-C-002

Addition uses matching coordinates.

MATH-C02-C-003

The scalar multiplies every coordinate.

MATH-C02-C-004

Dot product means multiply matching entries, then add.

MATH-C02-C-005

Distance between two positions is the length of their difference.

MATH-C02-C-006

For [1,0][1,0] and [0,1][0,1], the dot product is 0.

MATH-C02-C-007

Projection onto [1,0][1,0] keeps the horizontal part.

MATH-C02-C-008

The dot product collapses matching products into one number.

MATH-C02-C-009

Embeddings are learned representations, not guaranteed coordinate dictionaries.

MATH-C02-C-010

Cosine similarity compares direction after dividing by vector lengths.

MATH-C02-C-011

Ask whether the first coordinate means the same thing in both vectors.

MATH-C02-C-012

Residual means original vector minus projected vector.