At Westonci.ca, we provide reliable answers to your questions from a community of experts. Start exploring today! Experience the convenience of finding accurate answers to your questions from knowledgeable professionals on our platform. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

Given the matrices A and B shown below, find A - B.
A =
-1 3
2
-3
2 -5]
-1
-5 B = 3
2
4


Sagot :

The resulting matrix is C = [[0  8  - 1]; [- 5  - 2  - 5]].

How to subtract a matrix from another matrix

In this problem we find the definition of two matrices and with which we find a third one as the result of subtracting the second matrix from the first matrix. The subtraction is defined by the following formula:

C = A - B, where C(i, j) = A(i, j) - B(i, j)         (1)

Where:

  • i - Row index
  • j - Column index

If we know that A = [[- 1  3  2]; [- 3   2   - 5]] and B = [[- 1  - 5  3]; [2  4  0]], then the resulting matrix is:

C = [[- 1  3  2]; [- 3   2   - 5]] - [[- 1  - 5  3]; [2  4  0]]

C = [[0  8  - 1]; [- 5  - 2  - 5]]

The resulting matrix is C = [[0  8  - 1]; [- 5  - 2  - 5]].

To learn more on matrices: https://brainly.com/question/2696580

#SPJ1