Add [[1, 2], [3, 4]] + [[5, 6], [7, 8]]
Add two matrices of the same shape entry by entry.
Solution
- Matrix A [[1, 2], [3, 4]]
- Matrix B [[5, 6], [7, 8]]
- Add entrywise Combine matching entries position by position.
- 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