The matrix calculators allows to calculate online the difference between two matrices with step calculations.
The calculator can calculate online the difference between two matrices. The matrix calculator may calculate the difference of matrices whose coefficients have letters or numbers, it is a formal matrix calculation calculator.
The calculator can calculate the difference of matrices with the results in exact form: to calculate the difference of matrices `((3,3,4),(1,2,0),(-5,1,1))-((3,3,4),(1,4,0),(2,1,1))`, enter matrix_difference(`[[3;1;-5];[3;2;1];[4;0;1]];[[3;1;2];[3;4;1];[4;0;1]]`), after calculation, the result is returned.
The calculator allows symbolic calculations, it is possible to use letters as well to calculate the difference of matrices like this: `((a,3),(a/2,4))-((a,1),(a/2,2))`, enter matrix_difference(`[[a;a/2];[3;4]];[[a;a/2];[1;2]]`), after calculation, the result is returned.
matrix_difference(matrix;matrix)
matrix_difference(`[[3;1;-5];[3;2;1];[5;2;1]];[[3;1;2];[3;4;1];[3;0;1]]`) returns `[[0;0;-7];[0;-2;0];[2;2;0]]`