|
|
last edited 15 years ago by Bill Page |
1 2 | ||
Editor:
Time: 2007/11/18 18:27:57 GMT-8 |
||
Note: online test |
changed: - Minimal Maxima Here is an example from the paper "Minimal Maxima" by Robert Dodier: WebSite:maxima.sourceforge.net/docs/tutorial/en/minimal-maxima.pdf 7.2 Solve an equation \begin{maxima} eq_1: a * x + b * y + z = %pi; eq_2: z - 5*y + x = 0; s: solve ([eq_1, eq_2], [x, z]); length (s); [subst (s[1], eq_1), subst (s[1], eq_2)]; ratsimp (%); solve(a^3 + (1 - 2*C*D)*a^2 + (4*C*D-3*D-1)*a + (6*C*D-9*D-1),a); \end{maxima}
Here is an example from the paper "Minimal Maxima" by Robert Dodier:
WebSite:maxima.sourceforge.net/docs/tutorial/en/minimal-maxima.pdf