Question 175430: How do I find matrix A + matrix B?
A= [3,0,2,-1] B=[2,8,.6,3]
Answer by actuary(112) (Show Source):
You can put this solution on YOUR website! Matrix addition and subtraction is performed by adding/subtracting comparable components of each matrix.
A+B = [3+2,0+8,2+.6,-1+3]=[5,8,2.6,2]
I hope that this helps
| |
|