Inverse of a square matrix

 

inverse(A): calculate the inverse of square matrix A. It returns null if the square matrix hasn’t an inverse.


A

1

[[3,5],[2,8]]

2

=inverse(A1)

A2 Calculate the inverse of square matrix A1.

..