Simplify
Simplify[ expr ]
Simplify[ expr ] fully simplifies an expression, executing any Algebrakit instructions in the expression.
Warning
Simplify is intended only for use within the Algebrakit script. Do not use Simplify elsewhere, such as in definitions, instructions or intermediate steps.
| Example | in | out |
|---|---|---|
The result of the Solve instruction. |
Simplify[ Solve[x^2=4, x] ] |
Solution[Or[x=2, x=-2], x] |
The simplified form of (x^2+4 x+3)/(x+1) . |
Simplify[(x^2+4 x+3)/(x+1)] |
(x+3) |