coeftayl - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


coeftayl

coefficient of (multivariate) expression

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

coeftayl(expr, eqn, k)

Parameters

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)

Description

• 

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.

Examples

(1)

(2)

(3)

(4)

(5)

(6)

(7)

(8)

(9)

(10)

(11)

(12)

(13)

(14)

See Also

coeff

coeffs

mtaylor

taylor

 


Download Help Document