Matrix Arithmetic

 


e.g., [[2, 5], [4, 5], [-3, 4]] or 2 5; 4 5; -3 4;
e.g., [[2*x^3-3, x^2],[-x, 3*x+1]] or 2*x^3-3 x^2; -x 3*x+1; (no spaces within the polynomials)


 

Specify Ring:



Arithmetic Expression:

Use @ for matrix multiplication, e.g., A@B and use ** for matrix power, e.g., A**2