Multiply the matrix [[5, 1], [0, -5]] by -2.
Note
Scalar multiplication means multiply every entry by -2. Do not multiply only one row or one column. A scalar multiplies each entry of the matrix separately. The position of each entry stays the same; only its value changes. Matrix operations require attention to position, so avoid mixing entries from different rows or columns. The correct answer is [[-10, -2], [0, 10]], which matches the calculation or reasoning shown.
