Difference between revisions of "Invert Command"

From GeoGebra Manual
Jump to: navigation, search
m (formatting)
Line 18: Line 18:
 
{{betamanual|version=4.2|
 
{{betamanual|version=4.2|
 
1=; Invert[ <Function> ]
 
1=; Invert[ <Function> ]
: Returns the inverse of the function. Note: it must contain just one 'x' and no account is taken of domain or range, eg for f(x)=x^2 or f(x) = sin(x). If there is more than one 'x' in the function you may be able to invert it like this: Invert[ PartialFractions[(x+1)/(x+2)] ] or this Invert[ CompleteSquare[x^2+2x+1] ]
+
: Returns the inverse of the function.  
 +
{{Note|1=The function must contain just one 'x' and no account is taken of domain or range, eg for f(x)=x^2 or f(x) = sin(x). If there is more than one 'x' in the function you may be able to invert it like this: <code>Invert[ PartialFractions[(x+1)/(x+2)] ]</code> or this <code>Invert[ CompleteSquare[x^2+2x+1] ]</code>}}
 
}}
 
}}

Revision as of 14:24, 31 May 2012


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

\begin{pmatrix} -2 & 1\\ 1.5 & -0.5 \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