Difference between revisions of "Invert Command"

From GeoGebra Manual
Jump to: navigation, search
Line 12: Line 12:
 
:{{example|1=<div><code><nowiki>Invert[{{a, b}, {c, d}}]</nowiki></code> gives you the inverse matrix <math>
 
:{{example|1=<div><code><nowiki>Invert[{{a, b}, {c, d}}]</nowiki></code> gives you the inverse matrix <math>
 
\begin{pmatrix}
 
\begin{pmatrix}
d/( a* d- b* c & -b/( a* d- b* c)\\
+
\frac{d}{a* d- b* c} & \frac{-b}{a* d- b* c}\\
-c/( a* d- b* c) & a/( a* d- b* c)
+
\frac{-c}{a* d- b* c)}& \frac{a}{ a* d- b* c}
 
\end{pmatrix}
 
\end{pmatrix}
 
</math>.</div>}}
 
</math>.</div>}}

Revision as of 10:44, 18 August 2011


Invert[Matrix]
Inverts the given matrix.
Example:
Invert[{{1, 2}, {3, 4}}] gives you the inverse matrix

\begin{pmatrix} -2 & 1\\ \frac{3}{2} & -\frac{1}{2} \end{pmatrix}

.

CAS Syntax

Invert[Matrix]
Inverts the given matrix.
Example:
Invert[{{a, b}, {c, d}}] gives you the inverse matrix

\begin{pmatrix} \frac{d}{a* d- b* c} & \frac{-b}{a* d- b* c}\\ \frac{-c}{a* d- b* c)}& \frac{a}{ a* d- b* c} \end{pmatrix}

.
© 2024 International GeoGebra Institute