IFactor 命令
- IFactor( <Polynomial> )
-
在无理数范围内因式分解。
IFactor(x^2 + x - 1)
得出 \( \left( x + \frac{-\sqrt{5} + 1}{2} \right) \left( x + \frac{\sqrt{5} + 1}{2} \right)\)
CAS 语法
- IFactor( <Expression> )
-
在无理数范围内因式分解。
IFactor(x^2 + x - 1)
返回 \( \left( x + \frac{-\sqrt{5} + 1}{2} \right) \left( x + \frac{\sqrt{5} + 1}{2} \right)\)
- IFactor( <Expression>, <Variable> )
-
针对给定变量在无理数范围内进行因式分解。
IFactor(a^2 + a - 1, a)
返回 \( \left( a + \frac{-\sqrt{5} + 1}{2} \right) \left( a + \frac{\sqrt{5} + 1}{2} \right)\)
|
另请参阅 CIFactor 命令。 |