File: demo_Bertini.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 (26 lines) | stat: -rw-r--r-- 779 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
needsPackage "Bertini"
-- 0-dimensional example: cyclic5
CC[x_1..x_5];
f1 = x_1+x_2+x_3+x_4+x_5; 
f2 = x_1*x_2 + x_2*x_3 + x_3*x_4 + x_4*x_5 + x_5*x_1; 
f3 = x_1*x_2*x_3 + x_2*x_3*x_4 + x_3*x_4*x_5 + x_4*x_5*x_1 + x_5*x_1*x_2; 
f4 = x_1*x_2*x_3*x_4 + x_2*x_3*x_4*x_5 + x_3*x_4*x_5*x_1 + x_4*x_5*x_1*x_2 + x_5*x_1*x_2*x_3; 
f5 = x_1*x_2*x_3*x_4*x_5 - 1; 
F = {f1,f2,f3,f4,f5};
sols = bertiniZeroDimSolve F
p := first sols
coordinates p
status p
peek p
sols2 = bertiniZeroDimSolve {f1^2,f2,f3,f4,f5};
peek first sols2
-- parameter homotopy
R = CC[x,y,z,u1,u2]
f1 = x^2+y^2-z^2
f2 = u1*x+u2*y
p0 = {{0,1}} -- parameters
p1 = {{1,0}} -- parameters
bPH = bertiniParameterHomotopy({f1,f2},{u1,u2},{p0,p1},ISPROJECTIVE=>1)
bPH#0 / clean_0.001@@matrix
bPH#1 / clean_0.001@@matrix