public static MathMatrix operator +(MathMatrix A, MathMatrix B) => MatrixOperations.Add(A, B);
public static MathMatrix operator -(MathMatrix A, MathMatrix B) => MatrixOperations.Subtract(A, B);
public static MathMatrix operator *(MathMatrix A, MathMatrix B) => MatrixOperations.Multiply(A, B);