110k views
0 votes
Linear combination of matrices .

Linear combination of matrices .-example-1
User Glmxndr
by
7.3k points

1 Answer

4 votes

Multiplying a matrix by a scalar is equivalent to multiplying each entry in the matrix by that scalar:


A=\begin{bmatrix}0&-3\\-5&5\end{bmatrix}\implies3A=\begin{bmatrix}0&-9\\-15&15\end{bmatrix}


B=\begin{bmatrix}-2&-6\\2&5\end{bmatrix}\implies-6B=\begin{bmatrix}12&36\\-12&-30\end{bmatrix}

Now combine them:


3A-6B=3A+(-6B)=\begin{bmatrix}0+12&-9+36\\-15+(-12)&15+(-30)\end{bmatrix}=\begin{bmatrix}12&27\\-27&-15\end{bmatrix}

User Graygilmore
by
6.9k points