Macaulay2 » Documentation
Packages » NumericalCertification :: certifyRegularSolution
next | previous | forward | backward | up | index | toc

certifyRegularSolution -- certify whether a given point is an approximate solution to the system

Synopsis

Description

This function executes the alpha test based on the value computed by computeConstants.

i1 : R = RR[x1,x2,y1,y2];
i2 : f = polySystem {3*y1 + 2*y2 -1, 3*x1 + 2*x2 -3.5,x1^2 + y1^2 -1, x2^2 + y2^2 - 1};

Input can be a AbstractPoint or Matrix representing coordinates or a list of points or matrices.

i3 : p1 = point{{.95,.32,-.30,.95}};
i4 : certifyRegularSolution(f,p1)

o4 = true

Ways to use certifyRegularSolution :

For the programmer

The object certifyRegularSolution is a method function.