FloatingComplexPackage ParΒΆ
numsolve.spad line 447 [edit on github]
Par: Join(Field, OrderedRing)
This is a package for the approximation of complex solutions for systems of equations of rational functions with complex rational coefficients. The results are expressed as either complex rational numbers or complex floats depending on the type of the precision parameter which can be either a rational number or a floating point number.
- complexRoots: (Fraction Polynomial Complex Integer, Par) -> List Complex Par
complexRoots(rf, eps)
finds all the complex solutions of a univariate rational function with rational number coefficients. The solutions are computed to precision eps.
- complexRoots: (List Fraction Polynomial Complex Integer, List Symbol, Par) -> List List Complex Par
complexRoots(lrf, lv, eps)
finds all the complex solutions of a list of rational functions with rational number coefficients with respect the variables appearing inlv
. Each solution is computed to precision eps and returned as list corresponding to the order of variables inlv
.
- complexSolve: (Equation Fraction Polynomial Complex Integer, Par) -> List Equation Polynomial Complex Par
complexSolve(eq, eps)
finds all the complex solutions of the equationeq
of rational functions with rational rational coefficients with respect to all the variables appearing ineq
, with precision eps.
- complexSolve: (Fraction Polynomial Complex Integer, Par) -> List Equation Polynomial Complex Par
complexSolve(p, eps)
find all the complex solutions of the rational functionp
with complex rational coefficients with respect to all the variables appearing inp
, with precision eps.
- complexSolve: (List Equation Fraction Polynomial Complex Integer, Par) -> List List Equation Polynomial Complex Par
complexSolve(leq, eps)
finds all the complex solutions to precision eps of the systemleq
of equations of rational functions over complex rationals with respect to all the variables appearing inlp
.
- complexSolve: (List Fraction Polynomial Complex Integer, Par) -> List List Equation Polynomial Complex Par
complexSolve(lp, eps)
finds all the complex solutions to precision eps of the systemlp
of rational functions over the complex rationals with respect to all the variables appearing inlp
.