Multiply the following matrix with the given scalar.

[24 30]
5 [20 25]
[32 28]

First, multiply each element in the matrix by the scalar 5:

[24 * 5 30 * 5]
[20 * 5 25 * 5]
[32 * 5 28 * 5]

This results in the following matrix:

[120 150]
[100 125]
[160 140]