|
|
last edited 17 years ago |
1 | ||
Editor:
Time: 2007/11/17 22:02:05 GMT-8 |
||
Note: |
changed: - There are several forms of 'solve' defined in 'TRANSOLVE', among them one that takes a list of equations, another one that takes a single equation. After fixing bug #102 and #137, \begin{axiom} solve([exp(x)=2], [x]) \end{axiom} returns the empty list, whereas \begin{axiom} solve(exp(x)=2, x) \end{axiom} gives the correct answer.
There are several forms of solve
defined in TRANSOLVE
, among them one that takes a list of equations, another one that takes a single equation. After fixing bug #102 and #137,
(1) -> solve([exp(x)=2],[x])
(1) |
returns the empty list, whereas
solve(exp(x)=2,x)
(2) |
gives the correct answer.