up previous next
RealRoots

computes the real roots of a univariate polynomial

Syntax
RealRoots(F: RINGELEM): LIST
RealRoots(F: RINGELEM, Precision: RAT): LIST
RealRoots(F: RINGELEM, Precision: RAT, Interval:[RAT, RAT]): LIST

Description
This function computes isolating intervals for the real roots of a univariate polyomial over QQ. It returns the list of the real roots, where a root is represented as a record containing either the exact root (if the fields inf and sup are equal), or an open interval (inf, sup) containing the root. A third field (called CoeffList) has an obscure meaning.

An optional second argument specifies the maximum width an isolating interval may have. An optional third argument specifies a closed interval in which to search for roots.

The interval represented by a root record may be refined by using the function RealRootRefine . The function RealRootsApprox may be more useful to you: it produces rational approximations to the real roots (but these cannot later be refined).

Example
/**/  indent(RealRoots(x^2-2));
[
  record[CoeffList := [-1, 0, 2], inf := -4, sup := 0],
  record[CoeffList := [1, 0, -2], inf := 0, sup := 4]
]

/**/  RR := RealRoots((x^2-2)*(x-1), 10^(-5));
/**/  FloatStr(RR[1].inf);  -- left end of interval
-1.414213562*10^0

/**/  FloatStr(RR[1].sup);  -- right end of interval
-1.414213561*10^0

/**/  RR := RealRoots(x^2-2, 10^(-20), [0, 2]);

/**/  RR[1].inf;                -- incomprehensible
60153992292001127886258443119406264231/42535295865117307932921825928971026432
/**/  FloatStr(RR[1].inf, 20);  -- comprehensible
1.4142135623730950488*10^0

See Also