CSolve 指令
出自GeoGebra Manual
本頁為官方文件,一般使用者無法修改,若有任何誤謬,請與官方聯絡。如欲編輯,請至本頁的開放版。
此指令只能用在運算區。
- CSolve[ <Equation> ]
- Solves a given equation for the variable x and returns a list of all solutions, allowing for complex solutions.
- 範例:
CSolve[x^2 = -1]
yields {x = ί, x = -ί}, the complex solutions of x2 = -1. - CSolve[ <Equation>, <Variable> ]
- Solves an equation for a given unknown variable and returns a list of all solutions, allowing for complex solutions.
- 範例:
CSolve[a^2 = -1, a]
yields {a = ί, a = -ί}, the complex solutions of a2 = -1. - CSolve[ <List of Equations>, <List of Variables> ]
- Solves a set of equations for a given set of unknown variables and returns a list of all solutions, allowing for complex solutions.
- 範例:
CSolve[{y^2 = x - 1, x = 2 * y - 1}, {x, y}]
yields {{x = 1 + 2 ί, y = 1 + ί}, {x = 1 - 2 ί, y = 1 - ί}}, the complex solutions of y2 = x and x = 2 * y - 1.
備註:
- The complex ί is obtained by pressing ALT + i.
- See also CSolutions Command and Solve Command.