Muliply two matrices

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

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

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

A = Matrix([[0.5, -1.0, -0.9]])
B = Matrix([[0.1], [-0.6], [-0.6]])

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-08-04 20:43:38 (CDT)
Duration:
0s
Show/Hide answer
{
  "C": {
    "_type": "ndarray",
    "_dtype": "float64",
    "_value": [
      [
        1.19
      ]
    ]
  }
}
History
dec frac
rad deg