Package edu.jas.root
Real and Complex Root Computation package.
This package contains classes for the computation of isolating and refining intervals of real roots and complex roots of univariate polynomials.
Method algebraicRoots()
from class RootFactory
computes both the real and complex algebraic roots of a univariate polynomial.
Method decimalRoots()
computes isolating intervals (or rectangles) for the roots
and then uses a numerical algorithm to get a decimal approximation of the roots.
For the computation of real roots the main interface is RealRoots
and main implementing class is RealRootsSturm
.
The implementation follows in part
section 8.8 "Computation of real zeroes of Polynomial Systems"
in Gröbner Bases, A computational Approach to Commutative Algebra, by Becker et al.
The class RealAlgebraicNumber
is based on AlgebraicNumber
with factory class RealAlgebraicRing
based on AlgebraicNumberRing
.
They implement real algebraic numbers, which are algebraic numbers plus an
isolating interval for a real root of the generator.
RealRootsSturm
can be applied to polynomials with real algebraic
numbers as coefficients.
For the computation of complex roots the main interface is ComplexRoots
and the main implementing class is ComplexRootsSturm
.
The implementation provides an exact infallible method which follows the numeric method of Wilf
(see Wilf: A global bisection algorithm for computing the zeros of polynomials in the complex plane).
It uses Sturm sequences following the Routh-Hurwitz Method
to count the number of complex roots within a rectangle in the complex plane.
For a (eventually) more efficient method see:
Collins and Krandick: An efficient algorithm for infallible polynomial complex root isolation,
in ISSAC'92.
Heinz Kredel
Last modified: Wed Aug 17 23:32:35 CEST 2016
$Id$
-
ClassDescriptionContainer for the real and complex algebraic roots of a univariate polynomial.Coefficient to algebraic from real algebraic functor.Boundary determined by a rectangle and a polynomial.Coefficient to complex algebraic functor.Coefficient to complex algebraic from complex functor.Coefficient to real algebraic functor.Coefficient to algebraic functor.Coefficient to recursive algebraic functor.Complex algebraic number class based on AlgebraicNumber.Complex algebraic number factory class based on AlgebraicNumberRing with RingFactory interface.Complex roots interface.Complex roots abstract class.Complex roots implemented by Sturm sequences.Container for the real and complex algebraic roots of a univariate polynomial.Interval.Invalid boundary exception class.No convergence exception class.Polynomial to algebraic functor.Polynomial utilities related to real and complex roots.Real algebraic number class based on AlgebraicNumber.Real algebraic number factory class based on AlgebraicNumberRing with RingFactory interface.Real arithmetic utilities.Coefficient to real algebriac from algebraic functor.Real roots interface.Real roots abstract class.Real root isolation using Sturm sequences.RealAlgebraicNumber root tuple.Rectangle.Roots factory.Real root utilities.