Invert 指令
来自GeoGebra Manual
本頁為官方文件,一般使用者無法修改,若有任何誤謬,請與官方聯絡。如欲編輯,請至本頁的開放版。
- Invert[ <Matrix> ]
CAS 視窗
- Invert[ <Matrix> ]
- Invert[Matrix]
- Inverts the given matrix.
- 範例:
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.
- 範例:
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}
.