
The infolist features is a list of known features. These are integer, noninteger, even-
чётное, odd-нечётное, rational, irrational, real, imaginary, complex, analytic, increasing,
decreasing, oddfun, evenfun, posfun, commutative, lassociative, rassociative, symmetric, and
antisymmetric, plus any user-defined features.
features is a list of mathematical features. There is also a list of non-mathematical,
system-dependent features. See status.
Функция: forget (pred_1, ..., pred_n)
Функция: forget (L)
Removes predicates established by assume-предположение. The predicates may be
expressions equivalent to (but not necessarily identical to) those previously assumed.
forget (L), where L is a list of predicates, forgets each item on the list.
Функция: killcontext (context_1, ..., context_n)
Kills-стирает(из памяти) the contexts context_1, ..., context_n.
If one of the contexts is the current context, the new current context will become the first
available subcontext of the current context which has not been killed. If the first available
unkilled context is global then initial is used instead. If the initial context is killed, a new, empty
initial context is created.
killcontext refuses to kill a context which is currently active, either because it is a
subcontext of the current context, or by use of the function activate.
killcontext evaluates its arguments. killcontext returns done.
Функция: newcontext (name)
Creates a new, empty context, called name, which has global as its only subcontext. The
newly-created context becomes the currently active context.
newcontext evaluates its argument. newcontext returns name.
Функция: supcontext (name, context)
Функция: supcontext (name)
Creates a new context, called name, which has context as a subcontext. context must
exist.
If context is not specified, the current context is assumed.
13. Polynomials - Полиномы
13.1 Introduction to Polynomials
Polynomials are stored-сохраняются in Maxima either in General Form or as Cannonical
Rational Expressions (CRE) form. The latter-последняя is-есть a standard-стандартная form-
форма, and is used internally-внутренне by operations such as factor, ratsimp, and so on.
Canonical Rational Expressions constitute a kind-разновидность of representation which
is especially suitable for expanded polynomials and rational functions (as well as for partially
factored polynomials and rational functions when RATFAC is set to true). In this CRE form an
ordering of variables (from most to least main) is assumed for each expression. Polynomials are
represented recursively by a list consisting of the main variable followed by a series of pairs of
expressions, one for each term of the polynomial. The first member of each pair is the exponent
109