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

Online Help

All Products    Maple    MapleSim


MultivariatePowerSeries

  

UpdatePrecision

  

update the precision to which a power series or univariate polynomial over power series is known

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

UpdatePrecision(p,d)

UpdatePrecision(u,d)

Parameters

p

-

power series generated by this package

u

-

univariate polynomial over power series generated by this package

d

-

non-negative integer

Description

• 

The command UpdatePrecision(p,d) increases the precision of p so that this precision equals at least d. This is achieved by repeated calls to the generator of p.

• 

The command UpdatePrecision(u,d) increases the precision of each power series coefficient of u so that this precision equals at least d.

• 

When using the MultivariatePowerSeries package, do not assign anything to the variables occurring in the power series, Puiseux series, and univariate polynomials over these series. If you do, you may see invalid results.

Examples

withMultivariatePowerSeries:

We create a new power series object. Initially, it is known only to low precision.

p1PowerSeries1+x

pPowⅇrSⅇrⅈⅇs of 11+x : 1+

(1)

Precisionp

0

(2)

If we update the precision, more terms are known.

UpdatePrecisionp,10

PowⅇrSⅇrⅈⅇs of 11+x : 1x+x2x3+x4x5+x6x7+x8x9+x10+

(3)

Precisionp

10

(4)

We create a new polynomial over power series involving the power series defined above, p, and a  new power series, q.

qGeometricSeriesx,y

qPowⅇrSⅇrⅈⅇs of 11xy : 1+x+y+

(5)

fUnivariatePolynomialOverPowerSeriesq,p,z

fUnⅈvarⅈatⅇPolynomⅈalOvⅇrPowⅇrSⅇrⅈⅇs: 1+x+y++1x+x2x3+x4x5+x6x7+x8x9+x10+z

(6)

Because q is new, it is again known only to low precision.

Precisionq

1

(7)

Updating the precision of f updates the precision of each of its coefficients, p and q, if necessary. In this case, p was already known to higher precision, but q's precision is updated.

UpdatePrecisionf,8

UnⅈvarⅈatⅇPolynomⅈalOvⅇrPowⅇrSⅇrⅈⅇs: 1+x+y+x2+2xy+y2+x3+3x2y+3xy2+y3+x4+4x3y+6x2y2+4xy3+y4+x5+5x4y+10x3y2+10x2y3+5xy4+y5+x6+6x5y+15x4y2+20x3y3+15x2y4+6xy5+y6+x7+7x6y+21x5y2+35x4y3+35x3y4+21x2y5+7xy6+y7+x8+8x7y+28x6y2+56x5y3+70x4y4+56x3y5+28x2y6+8xy7+y8++1x+x2x3+x4+z

(8)

Precisionq

8

(9)

Precisionp

10

(10)

Compatibility

• 

The MultivariatePowerSeries[UpdatePrecision] command was introduced in Maple 2021.

• 

For more information on Maple 2021 changes, see Updates in Maple 2021.

See Also

GetCoefficient

HomogeneousPart

Precision

UnivariatePolynomialOverPowerSeries