Sophie

Sophie

distrib > Mandriva > 9.0 > i586 > by-pkgid > 8d125f3514d54b70bf040165a2f5d2e4 > files > 348

maxima-5.6-1mdk.i586.rpm

<HTML>
<HEAD>
<!-- This HTML file has been created by texi2html 1.52
     from maxima.texi on 25 April 2001 -->

<TITLE>Maxima Manual - Simplification</TITLE>
<link href="maxima_7.html" rel=Next>
<link href="maxima_5.html" rel=Previous>
<link href="maxima_toc.html" rel=ToC>

</HEAD>
<BODY>
<p>Go to the <A HREF="maxima_1.html">first</A>, <A HREF="maxima_5.html">previous</A>, <A HREF="maxima_7.html">next</A>, <A HREF="maxima_41.html">last</A> section, <A HREF="maxima_toc.html">table of contents</A>.
<P><HR><P>


<H1><A NAME="SEC25" HREF="maxima_toc.html#TOC25">Simplification</A></H1>



<H2><A NAME="SEC26" HREF="maxima_toc.html#TOC26">Definitions for Simplification</A></H2>

<P>
<DL>
<DT><U>Function:</U> <B>APPLY_NOUNS</B> <I>(exp)</I>
<DD><A NAME="IDX134"></A>
causes the application of noun forms in an
expression.  E.g. EXP:'DIFF(X^2/2,X); APPLY_NOUNS(EXP); gives X.  This
gives the same result as EV(EXP,NOUNS); except that it can be faster
and use less storage.  It also can be used in translated code, where
EV may cause problems.  Note that it is called APPLY_NOUNS, not
EV_NOUNS, because what it does is to APPLY the rules corresponding to
the noun-form operators, which is not evaluation.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>ASKEXP</B>
<DD><A NAME="IDX135"></A>
 default: [] contains the expression upon which ASKSIGN is
called.  A user may enter a MACSYMA break with ^A and inspect this
expression in order to answer questions asked by ASKSIGN.
</DL>

</P>
<P>
<DL>
<DT><U>Function:</U> <B>ASKINTEGER</B> <I>(exp,&#60;optional-arg&#62;)</I>
<DD><A NAME="IDX136"></A>
exp is any valid macsyma expression
and optional-arg is EVEN,ODD,INTEGER and defaults to INTEGER if not
given.  This function attempts to determine from the data-base whether
exp is EVEN, ODD or just an INTEGER.  It will ask the user if it
cannot tell otherwise and attempt to install the information in the
data-base if possible.

</P>
</DL>
<P>
<DL>
<DT><U>Function:</U> <B>ASKSIGN</B> <I>(exp)</I>
<DD><A NAME="IDX137"></A>
first attempts to determine whether the specified
expression is positive, negative, or zero.  If it cannot, it asks the
user the necessary questions to complete its deduction.  The user's
answer is recorded in the data base for the duration of the current
computation (one "C-line"). The value of ASKSIGN is one of POS, NEG,
or ZERO.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>DEMOIVRE</B>
<DD><A NAME="IDX138"></A>
 default: [FALSE] if TRUE will cause

<PRE>
%E^(A+B*%I) ==&#62; %E^A*(COS(B)+%I*SIN(B))
</PRE>

<P>
if B is free of %I.  A and B are not expanded.
DEMOIVRE:TRUE; is the way to reverse the effect of
EXPONENTIALIZE:TRUE;

</P>
<P>
DEMOIVRE(exp) will cause the conversion without setting the switch or
having to re-evaluate the expression with EV.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>DOMAIN</B>
<DD><A NAME="IDX139"></A>
default: [REAL] - if set to COMPLEX, SQRT(X^2) will remain
SQRT(X^2) instead of returning ABS(X).  The notion of a "domain" of
simplification is still in its infancy, and controls little more than
this at the moment.

</P>
</DL>
<P>
<DL>
<DT><U>Function:</U> <B>EXPAND</B> <I>(exp)</I>
<DD><A NAME="IDX140"></A>
will cause products of sums and exponentiated sums to be
multiplied out, numerators of rational expressions which are sums to
be split into their respective terms, and multiplication (commutative
and non-commutative) to be distributed over addition at all levels of
exp.  For polynomials one should usually use RATEXPAND which uses a
more efficient algorithm (see DESCRIBE(RATEXPAND);).
MAXNEGEX[1000] and MAXPOSEX[1000] control the maximum negative and
positive exponents, respectively, which will expand.
EXPAND(exp,p,n) expands exp, using p for MAXPOSEX and n for MAXNEGEX.
This is useful in order to expand part but not all of an expression.
EXPON[0] - the exponent of the largest negative power which is
automatically expanded (independent of calls to EXPAND).  For example
if EXPON is 4 then (X+1)**(-5) will not be automatically expanded.
EXPOP[0] - the highest positive exponent which is automatically
expanded.  Thus (X+1)**3, when typed, will be automatically expanded
only if EXPOP is greater than or equal to 3.  If it is desired to have
(X+1)**N expanded where N is greater than EXPOP then executing
EXPAND((X+1)**N) will work only if MAXPOSEX is not less than N.
The EXPAND flag used with EV (see EV) causes expansion.
The file SHARE1;FACEXP FASL contains several related functions 
(FACSUM and COLLECTTERMS are two) that provide the user with the 
ability to structure expressions by controlled expansion.
Brief function descriptions are available in SHARE1;FACEXP USAGE.
A demo is available by doing BATCH("facexp.mc")$ .

</P>
</DL>
<P>
<DL>
<DT><U>Function:</U> <B>EXPANDWRT</B> <I>(exp,var1,var2,...)</I>
<DD><A NAME="IDX141"></A>
expands exp with respect to the vari.
All products involving the vari appear explicitly.  The form returned
will be free of products of sums of expressions that are not free of
the vari.  The vari may be variables, operators, or expressions.  By
default, denominators are not expanded, but this can be controlled by
means of the switch EXPANDWRT_DENOM.  Do LOAD(STOPEX); to use this
function.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>EXPANDWRT_DENOM</B>
<DD><A NAME="IDX142"></A>
 default:[FALSE] controls the treatment of rational
expressions by EXPANDWRT.  If TRUE, then both the numerator and
denominator of the expression will be expanded according to the
arguments of EXPANDWRT, but if EXPANDWRT_DENOM is FALSE, then only the
numerator will be expanded in that way.  Do LOAD(STOPEX) to use.

</P>
</DL>
<P>
<DL>
<DT><U>Function:</U> <B>EXPANDWRT_FACTORED</B> <I>(exp, var1, var2, ..., varN)</I>
<DD><A NAME="IDX143"></A>
is similar to
EXPANDWRT, but treats expressions that are products somewhat
differently.  EXPANDWRT_FACTORED will perform the required expansion
only on those factors of exp that contain the variables in its argument list
argument list.  Do LOAD(STOPEX) to use this
function.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>EXPON</B>
<DD><A NAME="IDX144"></A>
 default: [0] - the exponent of the largest negative power which
is automatically expanded (independent of calls to EXPAND).  For
example if EXPON is 4 then (X+1)**(-5) will not be automatically
expanded.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>EXPONENTIALIZE</B>
<DD><A NAME="IDX145"></A>
 default: [FALSE] if TRUE will cause all circular and
hyperbolic functions to be converted to exponential form.  (Setting
DEMOIVRE:TRUE; will reverse the effect.)
EXPONENTIALIZE(exp) will cause the conversion to exponential form of an
expression without setting the switch or having to re-evaluate the
expression with EV.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>EXPOP</B>
<DD><A NAME="IDX146"></A>
 default: [0] - the highest positive exponent which is
automatically expanded.  Thus (X+1)**3, when typed, will be
automatically expanded only if EXPOP is greater than or equal to 3.
If it is desired to have (X+1)**n expanded where n is greater than
EXPOP then executing EXPAND((X+1)**n) will work only if MAXPOSEX is
not less than n.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>FACTLIM</B>
<DD><A NAME="IDX147"></A>
 default: [-1] gives the highest factorial which is
automatically expanded.  If it is -1 then all integers are expanded.

</P>
</DL>
<P>
<DL>
<DT><U>Function:</U> <B>INTOSUM</B> <I>(expr)</I>
<DD><A NAME="IDX148"></A>
will take all things that a summation is multiplied
by, and put them inside the summation. If the index is used in the
outside expression, then the function tries to find a reasonable
index, the same as it does for SUMCONTRACT.  This is essentially the
reverse idea of the OUTATIVE property of summations, but note that it
does not remove this property, it only bypasses it.  In some cases, a
SCANMAP(MULTTHRU,expr) may be necessary before the INTOSUM.

</P>
</DL>
<P>
<DL>
<DT><U>declaration:</U> <B>LASSOCIATIVE</B>
<DD><A NAME="IDX149"></A>
 - If DECLARE(G,LASSOCIATIVE); is done, this tells the
simplifier that G is left-associative.  E.g.  G(G(A,B),G(C,D)) will
simplify to G(G(G(A,B),C),D).

</P>
</DL>
<P>
<DL>
<DT><U>declaration:</U> <B>LINEAR</B>
<DD><A NAME="IDX150"></A>
 - One of MACSYMA's OPPROPERTIES.  For univariate f so
declared, "expansion" F(X+Y) -&#62; F(X)+F(Y), F(A*X) -&#62; A*F(X) takes
place where A is a "constant".  For functions F of &#62;=2 args,
"linearity" is defined to be as in the case of 'SUM or 'INTEGRATE,
i.e. F(A*X+B,X) -&#62; A*F(X,X)+B*F(1,X) for A,B FREEOF X.  (LINEAR is
just ADDITIVE + OUTATIVE.)

</P>
</DL>
<P>
<DL>
<DT><U>declaration:</U> <B>MAINVAR</B>
<DD><A NAME="IDX151"></A>
 - You may DECLARE variables to be MAINVAR.  The ordering
scale for atoms is essentially: numbers &#60; constants (e.g. %E,%PI) &#60;
scalars &#60; other variables &#60; mainvars.  E.g. compare EXPAND((X+Y)^4);
with (DECLARE(X,MAINVAR), EXPAND((X+Y)^4)); .  (Note: Care should be
taken if you elect to use the above feature.  E.g. if you subtract an
expression in which X is a MAINVAR from one in which X isn't a
MAINVAR, resimplification e.g. with EV(expression,SIMP) may be
necessary if cancellation is to occur.  Also, if you SAVE an
expression in which X is a MAINVAR, you probably should also SAVE X.)

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>MAXAPPLYDEPTH</B>
<DD><A NAME="IDX152"></A>
 default: [10000] - the maximum depth to which APPLY1
and APPLY2 will delve.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>MAXAPPLYHEIGHT</B>
<DD><A NAME="IDX153"></A>
 default: [10000] - the maximum height to which APPLYB1
will reach before giving up.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>MAXNEGEX</B>
<DD><A NAME="IDX154"></A>
 default: [1000] - the largest negative exponent which will
be expanded by the EXPAND command (see also MAXPOSEX).

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>MAXPOSEX</B>
<DD><A NAME="IDX155"></A>
 default: [1000] - the largest exponent which will be
expanded with the EXPAND command (see also MAXNEGEX).

</P>
</DL>
<P>
<DL>
<DT><U>declaration:</U> <B>MULTIPLICATIVE</B>
<DD><A NAME="IDX156"></A>
 - If DECLARE(F,MULTIPLICATIVE) has been executed,
then:
(1) If F is univariate, whenever the simplifier encounters F applied
to a product, F will be distributed over that product.  I.e. F(X*Y);
will simplify to F(X)*F(Y).
(2) If F is a function of 2 or more arguments, multiplicativity is
defined as multiplicativity in the first argument to F, i.e.
F(G(X)*H(X),X); will simplify to F(G(X),X)*F(H(X),X).
This simplification does not occur when F is applied to expressions of
the form PRODUCT(X[I],I,lower-limit,upper-limit).

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>NEGDISTRIB</B>
<DD><A NAME="IDX157"></A>
 default: [TRUE] - when TRUE allows -1 to be distributed
over an expression.  E.g. -(X+Y) becomes -Y-X.  Setting it to FALSE
will allow -(X+Y) to be displayed like that.  This is sometimes useful
but be very careful: like the SIMP flag, this is one flag you do not
want to set to FALSE as a matter of course or necessarily for other
than local use in your MACSYMA.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>NEGSUMDISPFLAG</B>
<DD><A NAME="IDX158"></A>
 default: [TRUE] - when TRUE, X-Y displays as X-Y
instead of as -Y+X.  Setting it to FALSE causes the special check in
display for the difference of two expressions to not be done.  One
application is that thus A+%I*B and A-%I*B may both be displayed the
same way.

</P>
</DL>
<P>
<DL>
<DT><U>special symbol:</U> <B>NOEVAL</B>
<DD><A NAME="IDX159"></A>
 - suppresses the evaluation phase of EV.  This is useful in
conjunction with other switches and in causing expressions      
to be resimplified without being reevaluated.

</P>
</DL>
<P>
<DL>
<DT><U>declaration:</U> <B>NOUN</B>
<DD><A NAME="IDX160"></A>
 - One of the options of the DECLARE command.  It makes a
function so DECLAREd a "noun", meaning that it won't be evaluated
automatically.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>NOUNDISP</B>
<DD><A NAME="IDX161"></A>
 default: [FALSE] - if TRUE will cause NOUNs to display with
a single quote.  This switch is always TRUE when displaying function
definitions.

</P>
</DL>
<P>
<DL>
<DT><U>special symbol:</U> <B>NOUNS</B>
<DD><A NAME="IDX162"></A>
 (EVFLAG) when used as an option to the EV command, converts all
"noun" forms occurring in the expression being EV'd to "verbs", i.e.
evaluates them.  See also NOUN, NOUNIFY, VERB, and VERBIFY.

</P>
</DL>
<P>
<DL>
<DT><U>special symbol:</U> <B>NUMER</B>
<DD><A NAME="IDX163"></A>
 causes some mathematical functions (including exponentiation)
with numerical arguments to be evaluated in floating point. It causes
variables in exp which have been given numervals to be replaced by
their values.  It also sets the FLOAT switch on.

</P>
</DL>
<P>
<DL>
<DT><U>Function:</U> <B>NUMERVAL</B> <I>(var1, exp1, var2, exp2, ...)</I>
<DD><A NAME="IDX164"></A>
declares vari to have a
numerval of expi which is evaluated and substituted for the variable
in any expressions in which the variable occurs if the NUMER flag is
TRUE. (see the EV function).

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>OPPROPERTIES</B>
<DD><A NAME="IDX165"></A>
 - the list of the special operator-properties handled by
the MACSYMA simplifier: LINEAR, ADDITIVE, MULTIPLICATIVE, OUTATIVE,
EVENFUN, ODDFUN, COMMUTATIVE, SYMMETRIC, ANTISYMMETRIC, NARY,
LASSOCIATIVE, and RASSOCIATIVE.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>OPSUBST</B>
<DD><A NAME="IDX166"></A>
 default:[TRUE] - if FALSE, SUBST will not attempt to
substitute into the operator of an expression.  E.g. (OPSUBST:FALSE,
SUBST(X^2,R,R+R[0])); will work.

</P>
</DL>
<P>
<DL>
<DT><U>declaration:</U> <B>OUTATIVE</B>
<DD><A NAME="IDX167"></A>
 - If DECLARE(F,OUTATIVE) has been executed, then:
(1) If F is univariate, whenever the simplifier encounters F applied
to a product, that product will be partitioned into factors that are
constant and factors that are not and the constant factors will be
pulled out.  I.e. F(A*X); will simplify to A*F(X) where A is a
constant.  Non-atomic constant factors will not be pulled out.
(2) If F is a function of 2 or more arguments, outativity is defined
as in the case of 'SUM or 'INTEGRATE, i.e. F(A*G(X),X); will simplify
to A*F(G(X),X) for A free-of X.
Initially, 'SUM, 'INTEGRATE, and 'LIMIT are declared to be OUTATIVE.

</P>
</DL>
<P>
<DL>
<DT><U>declaration:</U> <B>POSFUN</B>
<DD><A NAME="IDX168"></A>
 - POSitive FUNction, e.g. DECLARE(F,POSFUN); IS(F(X)&#62;0); -&#62;
TRUE.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>PRODHACK</B>
<DD><A NAME="IDX169"></A>
 default: [FALSE] - if set to TRUE then PRODUCT(F(I),I,3,1); 
will yield 1/F(2), by the identity 
PRODUCT(F(I),I,A,B) = 1/PRODUCT(F(I),I,B+1,A-1) when A&#62;B.

</P>
</DL>
<P>
<DL>
<DT><U>Function:</U> <B>RADCAN</B> <I>(exp)</I>
<DD><A NAME="IDX170"></A>
simplifies exp, which can contain logs, exponentials, and
radicals, by converting it into a form which is canonical over a large
class of expressions and a given ordering of variables; that is, all
functionally equivalent forms are mapped into a unique form.  For a
somewhat larger class of expressions, RADCAN produces a regular form.
Two equivalent expressions in this class will not necessarily have the
same appearance, but their difference will be simplified by RADCAN to
zero.  For some expressions RADCAN can be quite time consuming.  This
is the cost of exploring certain relationships among the components of
the expression for simplifications based on factoring and
partial-fraction expansions of exponents.  %E_TO_NUMLOG (default:
[FALSE]) - when set to TRUE, for "r" some rational number, and "x" some
expression, %E^(r*LOG(x)) will be simplified into x^r .
RADEXPAND[TRUE] when set to FALSE will inhibit certain
transformations: RADCAN(SQRT(1-X)) will remain SQRT(1-X) and will not
become %I SQRT(X-1).  RADCAN(SQRT(X^2-2*X+1)) will remain SQRT(X^2-2*X
+ 1) and will not be transformed to X- 1.
Do EXAMPLE(RADCAN); for examples.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>RADEXPAND</B>
<DD><A NAME="IDX171"></A>
 default: [TRUE] - if set to ALL will cause nth roots of
factors of a product which are powers of n to be pulled outside of the
radical.  E.g. if RADEXPAND is ALL, SQRT(16*X^2) will become 4*X .
More particularly, consider SQRT(X^2).
(a) If RADEXPAND is ALL or ASSUME(X&#62;0) has been done, SQRT(X^2) will 
become X.
(b) If RADEXPAND is TRUE and DOMAIN is REAL (its default), SQRT(X^2) 
will become ABS(X).
(c) If RADEXPAND is FALSE, or RADEXPAND is TRUE and DOMAIN is COMPLEX, 
SQRT(X^2) will be returned.
(The notion of DOMAIN with settings of REAL or COMPLEX is still in 
its infancy.  Note that its setting here only matters when RADEXPAND is 
TRUE.)

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>RADPRODEXPAND</B>
<DD><A NAME="IDX172"></A>
 - this switch has been renamed RADEXPAND.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>RADSUBSTFLAG</B>
<DD><A NAME="IDX173"></A>
 default: [FALSE] - if TRUE permits RATSUBST to make
substitutions such as U for SQRT(X) in X.

</P>
</DL>
<P>
<DL>
<DT><U>declaration:</U> <B>RASSOCIATIVE</B>
<DD><A NAME="IDX174"></A>
 - If DECLARE(G,RASSOCIATIVE); is done, this tells the
simplifier that G is right-associative.  E.g. 
G(G(A,B),G(C,D)) will simplify to G(A,G(B,G(C,D))).

</P>
</DL>
<P>
<DL>
<DT><U>Function:</U> <B>SCSIMP</B> <I>(exp,rule1, rule2,...,rulen)</I>
<DD><A NAME="IDX175"></A>
Sequential Comparative
Simplification [Stoute]) takes an expression (its first argument) and
a set of identities, or rules (its other arguments) and tries
simplifying.  If a smaller expression is obtained, the process
repeats.  Otherwise after all simplifications are tried, it returns
the original answer.  For examples, try EXAMPLE(SCSIMP); .

</P>
</DL>
<P>
<DL>
<DT><U>Function:</U> <B>SIMP</B>
<DD><A NAME="IDX176"></A>
 causes exp to be simplified regardless of the setting of the
switch SIMP which inhibits simplification if FALSE.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>SIMPSUM</B>
<DD><A NAME="IDX177"></A>
 default: [FALSE] - if TRUE, the result of a SUM is
simplified.  This simplification may sometimes be able to produce a
closed form.  If SIMPSUM is FALSE or if 'SUM is used, the value is a
sum noun form which is a representation of the sigma notation used in
mathematics.

</P>
</DL>
<P>
<DL>
<DT><U>Function:</U> <B>SUMCONTRACT</B> <I>(expr)</I>
<DD><A NAME="IDX178"></A>
will combine all sums of an addition that have
upper and lower bounds that differ by constants. The result will be an
expression containing one summation for each set of such summations
added to all appropriate extra terms that had to be extracted to form
this sum.  SUMCONTRACT will combine all compatible sums and use one of
the indices from one of the sums if it can, and then try to form a
reasonable index if it cannot use any supplied.  It may be necessary
to do an INTOSUM(expr) before the SUMCONTRACT.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>SUMEXPAND</B>
<DD><A NAME="IDX179"></A>
 default: [FALSE] if TRUE, products of sums and
exponentiated sums are converted into nested sums. For example:

<PRE>
        SUMEXPAND:TRUE$
        SUM(F(I),I,0,M)*SUM(G(J),J,0,N); -&#62;
                        'SUM('SUM(F(I1)*G(I2),I2,0,N),I1,0,M)
        SUM(F(I),I,0,M)^2; -&#62; 'SUM('SUM(F(I3)*F(I4),I4,0,M),I3,0,M)
</PRE>

<P>
If FALSE, they are left alone.  See also CAUCHYSUM.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>SUMHACK</B>
<DD><A NAME="IDX180"></A>
 default: [FALSE] - if set to TRUE then SUM(F(I),I,3,1); will
yield -F(2), by the identity SUM(F(I),I,A,B) = - SUM(F(I),I,B+1,A-1) 
when A&#62;B.

</P>
</DL>
<P>
<DL>
<DT><U>Variable:</U> <B>SUMSPLITFACT</B>
<DD><A NAME="IDX181"></A>
 default: [TRUE] - if set to FALSE will cause
MINFACTORIAL to be applied after a FACTCOMB.

</P>
</DL>
<P>
<DL>
<DT><U>declaration:</U> <B>SYMMETRIC</B>
<DD><A NAME="IDX182"></A>
 - If DECLARE(H,SYMMETRIC); is done, this tells the
simplifier that H is a symmetric function.  E.g. H(X,Z,Y) will
simplify to H(X, Y, Z).  This is the same as COMMUTATIVE.

</P>
</DL>
<P>
<DL>
<DT><U>Function:</U> <B>UNKNOWN</B> <I>(exp)</I>
<DD><A NAME="IDX183"></A>
returns TRUE iff exp contains an operator or function
not known to the built-in simplifier.

</P>
</DL>

<P><HR><P>
<p>Go to the <A HREF="maxima_1.html">first</A>, <A HREF="maxima_5.html">previous</A>, <A HREF="maxima_7.html">next</A>, <A HREF="maxima_41.html">last</A> section, <A HREF="maxima_toc.html">table of contents</A>.
</BODY>
</HTML>