Subject:  Linear Algebra

Add [[1, 2], [3, 4]] + [[5, 6], [7, 8]]

Add two matrices of the same shape entry by entry.

Answer [[6, 8], [10, 12]]

Solution

  1. Matrix A [[1, 2], [3, 4]]
  2. Matrix B [[5, 6], [7, 8]]
  3. Add entrywise Combine matching entries position by position.
  4. Result [[6, 8], [10, 12]]

Try a similar problem yourself

Use the Matrix Addition & Subtraction to solve a similar problem with your own values.

Open the solver