
Sean M.
asked 04/17/14please find AB
matrix A= [3,-2, 0,5] matrix B=[1,7,4,2,3,1]
More
1 Expert Answer
Please find AB
matrix A= [3,-2, 0,5] matrix B=[1,7,4,2,3,1]
matrix A= [3,-2, 0,5] matrix B=[1,7,4,2,3,1]
You can only multiply two matrices together if the number of columns in the first matrix equals the number of rows in the second matrix. The product matrix will have the number of rows in A and the number of columns in B. Hence I assume the problem is a 2x2 matrix times a 2x3 matrix, resulting in a 2x3 matrix:
| 3 -2 | | 1 7 4 | | (3*1-2*2) (3*7-2*3) (3*4-2*1) | | -1 15 10 |
AB = | 0 5 | | 2 3 1 | = | (0*1+5*2) (0*7+5*3) (0*4+5*1) | = | 10 15 5 |
Still looking for help? Get the right answer, fast.
Ask a question for free
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Find an Online Tutor Now
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Deanna L.
04/17/14