coeftayl
coefficient of (multivariate) expression
Calling Sequence
Parameters
Description
Examples
coeftayl(expr, eqn, k)
expr
-
arbitrary expression
eqn
equation of the form x= where x is a name (univariate case) or list (multivariate case)
k
non-negative integer (univariate case) or a list of non-negative integers (multivariate case)
This function computes a coefficient in the (multivariate) Taylor series representation of expr without forming the series (it uses differentiation and substitution). Often, expr is a polynomial.
The one-variable and several-variable cases are distinguished by the types of the input parameters.
UNIVARIATE CASE: x is a name and k a non-negative integer.
In this case, the value returned is the coefficient of in the Taylor series expansion of expr about . This is equivalent to executing but it is more efficient (because only a single term is computed).
MULTIVARIATE CASE: x is a nonempty list of indeterminates appearing in expr and is a list specifying the point of expansion with respect to the given indeterminates; k is a list of non-negative integers corresponding to elements in x and .
In this case, the value returned is the coefficient of the term specified by the monomial
in the multivariate Taylor series expansion of expr about the point . If k is the list of zeros then the value returned is the value resulting from substituting into expr.
See Also
coeff
coeffs
mtaylor
taylor
Download Help Document