Difference between revisions of "Invert Command"

From GeoGebra Manual
Jump to: navigation, search
m (Bot: Automated text replacement (-{{command +{{command|cas=true))
Line 1: Line 1:
 
<noinclude>{{Manual Page|version=4.0}}[[Category:Manual (official)|{{PAGENAME}}]]</noinclude>
 
<noinclude>{{Manual Page|version=4.0}}[[Category:Manual (official)|{{PAGENAME}}]]</noinclude>
{{command|vector-matrix}}
+
{{command|cas=true|vector-matrix}}
 
; Invert[Matrix]: Inverts the given matrix.
 
; Invert[Matrix]: Inverts the given matrix.
 
: {{Example|1=<div><code><nowiki>Invert[{{1, 2}, {3, 4}}]</nowiki></code> gives you the inverse matrix <math>
 
: {{Example|1=<div><code><nowiki>Invert[{{1, 2}, {3, 4}}]</nowiki></code> gives you the inverse matrix <math>

Revision as of 13:45, 10 September 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