Linear Algebra

How to solve

Each output component is one row of the matrix dotted with the vector.

Steps

  1. Dot the first row with the vector for the first component.
  2. Dot the second row for the second component.
  3. Write the result as a vector.

Example

[[2, 1], [0, 3]] times (4, −1)

  1. Row 1: 2·4 + 1·(−1) = 7.
  2. Row 2: 0·4 + 3·(−1) = −3.

Answer: (7, -3)

How to type answers

  • Write vectors like (7, -3)
Loading drills…