INVERT :: Inverse of a Matrix
Function:
invert
(M)
Returns the inverse of the matrix M.
The inverse is computed by the adjoint method.
Example:
(%i)
invert
( matrix( [a,b], [c,d] ) );
(%o) matrix( [d,-b], [-c,a] )
See Also:
MAXIMA
::
ADJOINT
... Adjoint of a Matrix
OCTAVE
::
INVERSE
... Inverse of a Square Matrix
EXAMPLE:
invert( matrix( [a,b], [c,d] ) );