#polynomial #algebra #root-finding

find-real-roots-of-polynomial

find all real roots of a polynomial

5 releases

0.2.3 Mar 17, 2024
0.2.2 Mar 17, 2024
0.2.1 Aug 5, 2021
0.2.0 Aug 4, 2021
0.1.0 Jul 10, 2021

#278 in Math

Download history 5/week @ 2024-02-15 22/week @ 2024-02-22 3/week @ 2024-02-29 10/week @ 2024-03-07 233/week @ 2024-03-14 31/week @ 2024-03-21 22/week @ 2024-03-28 21/week @ 2024-04-04

86 downloads per month

AGPL-3.0-or-later

18KB
243 lines

calculate Sturm chain and find all real roots by Sturm method.

use find_real_roots_of_polynomial::SturmChain;
use polynomial_ring::{polynomial, Polynomial};
use num::{BigRational, BigInt};
let v = [-2, 0, 1].iter().map(|x| BigRational::from(BigInt::from(*x))).collect::<Vec<_>>();
let f = Polynomial::new(v); // f=x^2-2=(x-√2)(x+√2)
let limit = BigRational::new(BigInt::from(1), BigInt::from(16)); // 1/16
let sc = SturmChain::<BigRational>::new(f);
let roots = sc.find_all_real_roots(&limit);
assert_eq!(roots.len(), 2);
assert!(&roots[0].1 - &roots[0].0 < limit);
assert!(&roots[1].1 - &roots[1].0 < limit);
// -√2 ∈ [-93/64, -45/32] = [-1.453125, -1.40625]
//  √2 ∈ [45/32, 93/64] = [1.40625, 1.453125]
assert_eq!(roots[0].0, BigRational::new(BigInt::from(-93), BigInt::from(64)));
assert_eq!(roots[0].1, BigRational::new(BigInt::from(-45), BigInt::from(32)));
assert_eq!(roots[1].0, BigRational::new(BigInt::from(45), BigInt::from(32)));
assert_eq!(roots[1].1, BigRational::new(BigInt::from(93), BigInt::from(64)));

Licence

AGPL-3.0-or-later

Dependencies

~1.5MB
~39K SLoC