1/26/13

INVERT :: Invert of a Matrix

maxima maxima_invert

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/(a*d-b*c),-b/(a*d-b*c)],[-c/(a*d-b*c),a/(a*d-b*c)])
See Also ...

maxima maxima_invert