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

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Mathematics : Geometry : Examples : Algebraic Curves Examples

Algebraic Curves

restart:

withalgcurves:

When f is a polynomial in x and y, then f defines an algebraic curve in a plane.

f:=51344y5+53384y447264y3415912x2y349304y2+29070x2y2+247631x2y+90164x4y+73931x2+40396x4

f:=51344y5+53384y447264y3415912x2y349304y2+29070x2y2+247631x2y+90164x4y+73931x2+40396x4

(1)

Puiseux Expansion

The function f has two singularities and one regular point on the line x=0. We can obtain information (such as the tangent lines, the delta invariant, and other invariants) on singularities by computing the Puiseux expansions. One can view these Puiseux expansions as a sort of Taylor expansion (note that Puiseux expansions can also have fractional powers of x, whereas a Taylor expansion does not) of the algebraic function RootOf(f, y). Because this algebraic function is multivalued, we will get several expansions corresponding to the different branches of f at x=0. The following command gives these expansions of f at x=0:

puiseuxf,x=0,y,0

61636418,xRootOf73931+49304_Z2,1+xRootOf50324_Z2135641

(1.1)


The fourth argument 0 tells puiseux to compute a minimal number of terms. The number of terms that will be computed in this way is precisely the number of terms that are required to be able to distinguish the different Puiseux expansions from one another.


Note: It appears as though only three different Puiseux expansions were given, whereas the function f has five different branches. The other two expansions are implicitly given by taking the conjugates of these expansions over the field Q((x)).

puiseuxf,x=0,y,3

61636418+9831486952811706011940312110209x2,1089365505607721104x2+xRootOf73931+49304_Z2,147466947852532504976x2+xRootOf50324_Z2135641

(1.2)


This command means the following: Give the Puiseux expansions up to accuracy 3, which means modulo x3. So the coefficients of x2 are given, but not the coefficients of x3. To view the x3 terms of the Puiseux expansions, we must compute the Puiseux expansions up to accuracy > 3.

puiseuxf,x=0,y,4

61636418+9831486952811706011940312110209x2,67083138071957259153721340698688RootOf73931+49304_Z2x3+1089365505607721104x2+xRootOf73931+49304_Z2,1149882029318321335285733439684206208x3RootOf50324_Z213564147466947852532504976x2+xRootOf50324_Z2135641

(1.3)


As one can see from the Puiseux expansions, the point x=0, y=1 is singular, because two Puiseux expansions are going through this point:

y=1+xRootOf50324 _Z2135641+higher_order_terms

and its conjugate. Similarly, x=0,y=0 is a singular point.

Return to Index of Example Worksheets