File: numericalAG.simpledoc

package info (click to toggle)
macaulay2 1.24.11%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 171,648 kB
  • sloc: cpp: 107,850; ansic: 16,307; javascript: 4,188; makefile: 3,947; lisp: 682; yacc: 604; sh: 476; xml: 177; perl: 114; lex: 65; python: 33
file content (208 lines) | stat: -rw-r--r-- 8,024 bytes parent folder | download | duplicates (3)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
-- -*- Mode: M2; mode: auto-fill; coding: utf-8; fill-column: 100 -*-
Key
     "numerical algebraic geometry"
Headline
     Introduction to NumericalAlgebraicGeometry
Description
     Code
     	  SUBSECTION "Getting started"
     Text
	  Start by loading the package
     Example
          needsPackage "NumericalAlgebraicGeometry"
     Text
	  Define a ring of polynomials with complex coefficients:
     Example
	  R = CC[x,y,z]
     Text
	  Note that numbers in the ``field'' $CC$ are, in fact, (53-bit) floating point numbers: 
     Example
	  a = 1/3 + 0.12*ii
	  b = pi*ii
	  c = a*b
	  c - c/a * a
     Text
	  A {\em polynomial system} is given by a list. One can also define an object of type {\em PolySystem}.
     Example
	  T = {x^2+y^2+z^2-1, x^2-y, x^3-z}
	  polySystem {x^2+y^2+z^2-1, x^2-y, x^3-z}     	  
     Text
	  Let's solve it numerically:
     Example
	  solsT = solveSystem T
	  #solsT
	  realPoints solsT
     Text
	  The above command launches a {\em black-box} solver for 0-dimensional polynomial systems; 
	  having a finite number of complex solutions is a prerequisite.    

     Code
     	  SUBSECTION "How does the black-box solver work?",
     Text
	  Here we discuss one of the simplest strategies to solve a 0-dimensional system of polynomials.

     Text
	  One can create the {\em total-degree start system} for any given {\em target system}. 
     Example
     	  R = CC[x,y,z]
	  T = {x^2+y^2+z^2-1, x^2-y, x^3-z}
    	  (S, solsS) = totalDegreeStartSystem T
     Text
	  The homotopy based on this system corresponds to the classical result in enumerative
	  algebraic geometry: {\em Bezout bound} on the number of solutions in terms of degrees of
	  the polynomial equations. 
     Text
	  The core routine tracks a linear segment homotopy 
     Text
          $H(t) = (1-t) S + gamma t T$ 
     Text
	  where $gamma=1$ by default. Here we pick a random value for $gamma$ 
	  (as the black-box solver, {\em solveSystem}, does).  
     Example
    	  solsT = track(S,T,solsS,gamma=>random CC) 
	  # select(solsT, s->status s === Regular)
     Text
    	  Randomization is essential here: with $gamma=1$ the continuation 
	  paths become singular in the interior of the interval $[0,1]$.
     Example
    	  track(S,T,solsS) 
     Text
    	  To see documentation for {\em track} including the description of some other optional
	  parameters that control the heuristic continuation algorithm,
     Example
    	  help track
	  
     Code
     	  SUBSECTION "Newton's method"
     Text
	  Here we illustrate the behavior of Newton's method 
	  on univariate polynomials with real coefficients:
     Example
	  R = RR[x]
     Text
	  {\em Newton's method}, one of the core numerical routines, can be used to find numerical
	  approximations to the roots of a polynomial. 
     Example
	  f = polySystem{ x*(2*x^4+3*x^3+5*x^2+7*x+11) }
	  X = point {{0.1}};
	  for i to 10 do ( X = newton(f,X); print coordinates X )
     Text
	  Note that the convergence of the sequence of approximation to the {\em associated zero}
	  $x=0$ is quadratic: the number of correct digits (roughly) doubles with every step. 
     Text	  
	  This is not so when the associated zero is multiple:
     Example
	  f = polySystem{ x^2*(2*x^4+3*x^3+5*x^2+7*x+11) }
	  X = point {{0.1}};
	  for i to 10 do ( X = newton(f,X); print coordinates X )
     Text
	  Taking a random starting point (not close to any root) may not produce good approximations
	  for a long time.
     Example
     	  X = point{{100*random RR}};
	  for i to 10 do ( X = newton(f,X); print coordinates X )

     Code
         SUBSECTION "Numerical rank and deflation"
     Text
     	 Newton method applied to an approximation of a singular isolated solution still converges, 
	 but not {\em quadratically}. We detect singularity by looking at the Jacobian.
     Example 
         R = CC[x,y,z];
	 T = polySystem {(x^2+y^2+z^2-3)^2, x^2-y, x^3-z};
 	 P = point {{1.00001, 1.00001+0.00002*ii, 1.00001-0.00002*ii}};
	 J = evaluate(jacobian T, P)
     Text 
     	 The jacobian at the approximate solution is almost rank-deficient.
	 {\em Numerical rank} is a the rank of a closeby matrix of the lowest possible rank.
	 In practice, numerical rank is heuristically determined by analyzing the singular values
         of the matrix.
     Example 
    	 first SVD J -- singular values
    	 numericalRank J
    	 numericalRank(J,Threshold=>0.0000001) 
     Text 
     	 To restore the quadratic convergence we use is {\em deflation}.
     Example
     	 r = deflate(T,P) -- returns the numerical rank, stores deflated system
	 DF := T.Deflation#r
	 P' := liftPointToDeflation(P,T,r) 
     Text 
     	 Now P' is an approximation to a regular solution of (an overdetermined system) DF that projects to P:	 
     Example
         J' = evaluate(jacobian DF,P') 
    	 numericalRank J'
     Text 
         More than one deflation steps may be needed to regularize. The following function carries
         out the chain of deflations storing, in particular, the {\em deflation sequence}.	 
     Example
         F = polySystem {x^3,y^3,x^2*y,z*(z-1)^2};
	 P = point {{0.000001, 0.000001*ii,1.000001-0.000001*ii}};
	 deflateAndStoreDeflationSequence(P,F)
	 peek P 
     
     Code
     	  SUBSECTION "Positive-dimensional solutions"
     Text
	  An (equidimensional) component of a solution set (a.k.a. variety) of positive dimension 
	  is represented numerically with a {\em witness set}.
     Text
     	 A witness set representing a component of dimension $d$ is a triple: a system of $n-d$
     	  polynomials, a system of $d$ linear functions, and a set of {\em witness points}.  
     Example	  
	  CC[x,y]
	  wEquations = polySystem{(x^2+y^2+2)*x*y}
	  wSlice = polySystem{x-y}
	  wPoints = {point{{0.999999*ii,0.999999*ii}}, point{{ -1.000001*ii,-1.000001*ii}}}
	  witnessSet(wEquations, wSlice, wPoints)
     Text
         For a variety, (a certain refinement of) its equidimensional decomposition is computed by a 
	 {\em regenerative cascade}.  
     Example
     	 CC[x,y,z]
	 sph = (x^2+y^2+z^2-1);     
	 F = {sph*(x-1)*(y-x^2), sph*(y-2)*(z-x^3)};
         setRandomSeed 0;	 
	 cs = regeneration F                         
     Text
     	 While the component of dimension 2 is irreducible, the other one can be further decomposed.
     Example
     	 decompose (first cs)
     Text
     	 The black-box function incorporating algorithms for 
	 {\em numerical irreducible decomposition} 
      	 constructs a {\em numerical variety}, which is simply a collection of
     	 witness sets.
     Example
	 numericalIrreducibleDecomposition ideal F

     Code
     	 SUBSECTION "Using external software for homotopy continuation"
     Text
         The NumericalAlgebraicGeometry package is able to use of two external programs 
	 for some homotopy continuation tasks. This is controlled by an optional argument {\em Software}.
     Example
    	 CC[x,y,z]
         F = {x^2+y^2+z^2-1, x^2-y, x^3-z}
	 sM = solveSystem F -- Software=>M2engine is the default
	 sP = solveSystem(F,Software=>PHCPACK)
	 sB = solveSystem(F,Software=>BERTINI) 	 
     Text
     	 The approximate comparison method (combined with approximate sorting) 
	 should confirm that the results are essentially the same.
     Example
     	 areEqual(sortSolutions sM, sortSolutions sP)
	 areEqual(sortSolutions sM, sortSolutions sB)
     Text 
         Here is an example of decomposition of a variety in 8-dimensional ambient space.
     Example
         R = CC[x11,x22,x21,x12,x23,x13,x14,x24];                                                              
	 F = {x11*x22-x21*x12,x12*x23-x22*x13,x13*x24-x23*x14}; 
	 numericalIrreducibleDecomposition(ideal F)
	 numericalIrreducibleDecomposition(ideal F, Software=>PHCPACK)
	 numericalIrreducibleDecomposition(ideal F, Software=>BERTINI)


-- Local Variables:
-- compile-command: "make -C /Users/de/src/M2/Macaulay2/packages PACKAGES=BeginningMacaulay2 RemakeAllDocumentation=true IgnoreExampleErrors=false"
-- End: