Muliply two matrices

Two matrices $A$ and $B$ are given as follows:

1
2
A = [-0.9 0.5 -0.6; 0.6 -0.9 0.3; -1.0 -0.9 -0.3; 0.2 -0.2 0.0; -0.7 0.7 0.7];
B = [0.1; 0.6; 0.7];
1
2
3
4
import numpy as np

A = np.array([[-0.9, 0.5, -0.6], [0.6, -0.9, 0.3], [-1.0, -0.9, -0.3], [0.2, -0.2, 0.0], [-0.7, 0.7, 0.7]])
B = np.array([[0.1], [0.6], [0.7]])
1
2
3
4
from sympy import *

A = Matrix([[-0.9, 0.5, -0.6], [0.6, -0.9, 0.3], [-1.0, -0.9, -0.3], [0.2, -0.2, 0.0], [-0.7, 0.7, 0.7]])
B = Matrix([[0.1], [0.6], [0.7]])

Find the product of these two matrices:

Correct answer

Student view placeholder

In student views this area is used for assessment and score info.
Tools

Staff information

Question

Title:
Muliply two matrices

Variant

Started at:
2026-09-19 07:03:58 (CDT)
Duration:
0s
Show/Hide answer
{
  "C": {
    "_type": "ndarray",
    "_dtype": "float64",
    "_value": [
      [
        -0.20999999999999996
      ],
      [
        -0.2700000000000001
      ],
      [
        -0.85
      ],
      [
        -0.09999999999999999
      ],
      [
        0.84
      ]
    ]
  }
}
History
dec frac
rad deg