Multiply the following matrix with the given scalar.

(1 point)
Responses

⎡⎣⎢121391178⎤⎦⎥
the 3 by 2 matrix row 1, 12 11 row 2, 13 7 row 3, 9 8

⎡⎣⎢273018201220⎤⎦⎥
the 3 by 2 matrix row 1, 27 20 row 2, 30 12 row 3, 18 20

⎡⎣⎢241215273018⎤⎦⎥
the 3 by 2 matrix row 1, 24 27 row 2, 12 30 row 3, 15 18

⎡⎣⎢273018241215⎤⎦⎥
the 3 by 2 matrix row 1, 27 24 row 2, 30 12 row 3, 18 15
Skip to navigation

To multiply a matrix by a scalar, you simply multiply every element of the matrix by that scalar.

Given matrix:
```
[ 12 11
13 7
9 8 ]
```

Scalar: 3

Resulting matrix:
```
[ 36 33
39 21
27 24 ]
```