Respuesta :

These array of numbers shown above are called matrices. These are rectangular arrays of number that are arranged in columns and rows. It is mostly useful in solving a system of linear equations. For example, you have these equations

x+3y=5
2x+y=1
x+y=10

In matrix form that would be

[tex] \left[\begin{array}{ccc}1&3&5\\2&1&1\\1&1&10\end{array}\right] [/tex]

where the first column are the coefficients of x, the second column the coefficients of y and the third column is the constants, When you multiple matrices, just multiply the same number on the same column number and the same row number. For this problem, the solution is

[tex] \left[\begin{array}{ccc}3*2&0*8\\2*0.6&-1*3\end{array}\right] = \left[\begin{array}{ccc}6&0\\1.2&-3\end{array}\right] [/tex]
Ver imagen meerkat18