InnerNumericFloatSolvePackage(K, F, Par)ΒΆ
numsolve.spad line 61 [edit on github]
K: GcdDomain
F: Field
Par: Join(Field, OrderedRing)
This is an internal package for computing approximate solutions to systems of polynomial equations. The parameter K
specifies the coefficient field of the input polynomials and must be either Fraction(Integer)
or Complex(Fraction Integer)
. The parameter F
specifies where the solutions must lie and can be one of the following: Float
, Fraction(Integer)
, Complex(Float)
, Complex(Fraction Integer)
. The last parameter specifies the type of the precision operand and must be either Fraction(Integer)
or Float
.
- innerSolve1: (Polynomial K, Par) -> List F
innerSolve1(p, eps)
returns the list of the zeros of the polynomialp
with precision eps.
- innerSolve1: (SparseUnivariatePolynomial K, Par) -> List F
innerSolve1(up, eps)
returns the list of the zeros of the univariate polynomialup
with precision eps.
- innerSolve: (List Polynomial K, List Polynomial K, List Symbol, Par) -> List List F
innerSolve(lnum, lden, lvar, eps)
returns a list of solutions of the system of polynomialslnum
, with the side condition that none of the members oflden
vanish identically on any solution. Each solution is expressed as a list corresponding to the list of variables inlvar
and with precision specified by eps.