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

Online Help

All Products    Maple    MapleSim


RootFinding

  

Analytic

  

zeros of an analytic function in one variable

  

AnalyticZerosFound

  

zeros of an analytic function in one variable

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Analytic(f, z, a+c*I..b+d*I, ...)

Analytic(f, z, re=a..b, im=c..d, ...)

AnalyticZerosFound()

Parameters

f

-

an analytic function of z (or an equation defining such)

z

-

(optional) an unknown

a, b, c, d

-

real constants

Description

• 

For an analytic function f of z, Analytic attempts to find all complex zeros of fz within the rectangular region a<=Rez<=b, c<=Imz<=d in the complex plane. It may also find some zeros outside but close to the boundary of the region.

• 

Setting of infolevel[RootFinding:-Analytic] to be between 1 and 7 will result in detailed information concerning the solving process being displayed.

• 

The AnalyticZerosFound() calling sequence returns a sequence of the zeros which have been located. These may be accessed after Analytic returns, or if its computation is interrupted.

Options

  

The remaining arguments are interpreted as options.

• 

digits=n

  

Set Digits := n; for the purpose of the calculation. Thus the accuracy of the zeros computed is usually less than n digits since only n digits are used for the calculation. The default is the value of Digits already set by the user; the minimum is 5. If hardware floats are in use, this default may be increased to a maximum of trunc(evalhf(Digits)).

• 

iterations=n

  

The number of iterations of Newton's method to be applied for each starting point. The default is 50.

• 

continue

  

Continue with an interrupted calculation, remembering already found zeros. This option may also be used to change the boundaries of the region without losing already found zeros. This option may only be used with the same function and variable as the original call.

• 

plot

  

Return a plot of the zeros instead of the zeros. Note, the zeros are still available to the user through the command RootFinding:-AnalyticZerosFound(), and are available until the routine RootFinding:-Analytic is once again used.

• 

modulo=a+Ib and modulo_s=a+Ib

  

When plotting, the zeros will be reduced modulo a in the real direction and modulo b in the imaginary direction. With the option 'modulo' they will be reduced to the region 0<=Rez<=a and 0<=Imz<=b; With 'modulo_s' they will be reduced to the region a2<=Rez<=a2, b2<=Imz<=b2.

• 

extra

  

For plotting purposes, remember the rectangular subregions in which the zeros were isolated, as well as the traces of the Newton iterations. These will appear when the zeros are plotted.

• 

viewall

  

For plotting purposes, view the entire specified region. Do not restrict the viewing region to the area where zeros are found.

Examples

withRootFinding

Analytic&comma;AnalyticZerosFound&comma;BivariatePolynomial&comma;EnclosingBox&comma;EvaluateAtRoot&comma;HasRealRoots&comma;Homotopy&comma;Isolate&comma;NextZero&comma;Parametric&comma;RefineRoot&comma;WitnessPoints

(1)

ftansinx1

ftansinx1

(2)

Analyticf&comma;x&comma;I2..1+I

0.903339110766515

(3)

g23x5+105x410x2+17x

g23x5+105x410x2+17x

(4)

Analyticg&comma;x&comma;re=5..1&comma;im=1..1

0.+0.I,−0.637181318531050,0.3040664542849070.404061905751759I,0.304066454284907+0.404061905751759I,−4.53616898134312

(5)

h10lnv+v2112ln3+32112

h10lnv+v21+ln3+8

(6)

Analytich&comma;v&comma;re=2000..100000&comma;im=100000..100000&comma;digits=32

64189.825354267506015885528786917

(7)

Analyticsinx&comma;x&comma;re=10..10&comma;im=10..10&comma;digits=10

0.+0.I,−6.283185305,−3.141592654,−9.424777960,6.283185305,3.141592654,9.424777960,0.+0.I,0.+0.I

(8)

f0sinx2x

f0sinx2x

(9)

Analyticf0&comma;x&comma;re=10..10&comma;im=10..10&comma;digits=10

−9.426231485,−3.247111097,−6.270228880,0.66343768551.171931328I,4.9807769674.145343143I,9.2246857057.087212710I,0.6634376855+1.171931328I,4.980776967+4.145343143I,9.224685705+7.087212710I

(10)

numlist23&comma;1+I5&comma;12I2&comma;7+I&colon;

f1mulzz0&comma;z0=numlist

f1z23z15I5z+12+I2z7I

(11)

Analyticf1&comma;z&comma;re=2..10&comma;im=2..2

0.666666666666665,0.200000000000000+0.200000000000000I,7.00000000000000+I,−0.500000000000000.50000000000000I

(12)

The following examples may be executed in Maple.

numlist23&comma;1+I5&comma;12I2&comma;7+I&colon;

f2addz0z&comma;z0=numlist

RootFinding:-Analyticf2&comma;z&comma;re=10..10&comma;im=10..10&comma;plot

RootFinding:-AnalyticZerosFound

f3add1nz&comma;n=1..10

RootFinding:-Analyticf3&comma;z&comma;re=5..2&comma;im=1..50&comma;plot&comma;extra

f4100Ix2+78x4+39Ix494x317x4+19x73Ix254I59x5

zerosRootFinding:-Analyticf4&comma;x&comma;re=10..10&comma;im=10..10

plotscomplexplotzeros&comma;style=point&comma;axes=boxed

See Also

fsolve

plot

RootFinding