algcurves
is_hyperelliptic
test if an algebraic curve is hyperelliptic
Calling Sequence
Parameters
Description
Examples
is_hyperelliptic(f, x, y)
f
-
irreducible polynomial in x and y
x
variable
y
An irreducible algebraic curve f⁡x,y is called rational if the genus is 0. In this case a parametrization can be computed. It is called elliptic if the genus is 1. It is called hyperelliptic if the genus is more than 1 and f⁡x,y is birational to a curve F⁡X,Y with degree(F,Y)=2. In the elliptic or hyperelliptic case a normal form can be computed with Weierstrassform.
If the genus is less than 2, then the curve is not hyperelliptic and the output will be false. If the genus is 2, then the output will be true. For higher genus, the output can be true or false.
with⁡algcurves:
f≔y2+x5+1
f≔x5+y2+1
g≔y9+2⁢x2⁢y6+2⁢x4⁢y3+x6+y2
h≔y9+3⁢x2⁢y6+3⁢x4⁢y3+x6+y2
is_hyperelliptic⁡f,x,y
true
is_hyperelliptic⁡g,x,y
false
is_hyperelliptic⁡h,x,y
Weierstrassform⁡h,x,y,x0,y0
−x07+7⁢x06−21⁢x05+35⁢x04−35⁢x03+21⁢x02+y02−7⁢x0+2,y⁢y3+x2+1y6+2⁢x2⁢y3+x4+y,−x⁢y3+x2y,−x0−1⁢y0,−x03+3⁢x02−3⁢x0+1
See Also
algcurves[genus]
algcurves[parametrization]
algcurves[Weierstrassform]
Download Help Document