Invert Command

Invert( <Matrix> )

Inverts the given matrix.

Invert({{1, 2}, {3, 4}}) yields \(\begin{pmatrix}-2 & 1\\1.5 & -0.5\end{pmatrix}\), the inverse matrix of \(\begin{pmatrix}1 & 2\\3 & 4\end{pmatrix}\).

  • In the Menu view cas.svg CAS View undefined variables are allowed too.

Invert({{a, b}, {c, d}}) yields \(\begin{pmatrix}\frac{d}{ad- bc} & \frac{-b}{ad- bc}\\\frac{-c}{ad- bc}& \frac{a}{ad- bc}\end{pmatrix}\), the inverse matrix of \(\begin{pmatrix}a & b\\c & d\end{pmatrix}\).

Invert( <Function> )

Gives the inverse of the function.

Invert(sin(x)) yields asin(x).