1. Multiply two matrices for a class exercise
Math StudentBackground
A student is working on a linear algebra assignment and needs to verify the product of two 2x2 matrices.
Problem
Manually multiplying matrices is prone to arithmetic errors and takes time to double-check.
How to use
Enter the first matrix in Matrix A and the second in Matrix B. Select 'Matrix Multiplication (A x B)' and set the output to 'Grid'.
Matrix A: '1, 2\n3, 4', Matrix B: '5, 6\n7, 8', Operation: 'multiply'Outcome
The tool instantly calculates the resulting 2x2 matrix [[19, 22], [43, 50]], confirming the student's manual work.