File: luke-NID-e100.m2

package info (click to toggle)
macaulay2 1.21%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 133,096 kB
  • sloc: cpp: 110,377; ansic: 16,306; javascript: 4,193; makefile: 3,821; sh: 3,580; lisp: 764; yacc: 590; xml: 177; python: 140; perl: 114; lex: 65; awk: 3
file content (28 lines) | stat: -rw-r--r-- 1,031 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
restart
needsPackage("Bertini")
R = CC[x,y,z];
f = {(1e100*y^2+x^2+z^2-1)*x, (y^2+x^2+z^2-1)*y};

NV = bertiniPosDimSolve f

f = {(10^100*y^2+x^2+z^2-1)*x, (y^2+x^2+z^2-1)*y};
NV = bertiniPosDimSolve f

restart
needsPackage("NumericalAlgebraicGeometry")
R = CC[x,y,z];
f = {(1e100*y^2+x^2+z^2-1)*x, (y^2+x^2+z^2-1)*y};

numericalIrreducibleDecomposition ideal f -- empty set (incorrect)
numericalIrreducibleDecomposition (ideal f, Software=>BERTINI) -- fails... does it get an empty set and just fails to parse files in this scenario? 
numericalIrreducibleDecomposition (ideal f, Software=>PHCPACK) -- nonempty set (still incorrect)

restart
needsPackage("NumericalAlgebraicGeometry")
R = CC[x,y,z];
f = {(1e1*y^2+x^2+z^2-1)*x, (y^2+x^2+z^2-1)*y};

numericalIrreducibleDecomposition (ideal f, Software=>BERTINI) -- looks OK
numericalIrreducibleDecomposition (ideal f, Software=>PHCPACK) -- does PHC return junk components too?
numericalIrreducibleDecomposition ideal f -- this gets stuck? (NID in M2 is going to be reimplemented)