Skip to content

Simultaneous Polynomial Rootfinding

Oscar Veliz edited this page Jun 26, 2020 · 4 revisions

There are multiple methods for finding all of the roots of a polynomial simultaneously. Two of them are Durand-Kerner and Aberth-Ehrlich which for comparison purposes were written in the same program. The language used was Go (Golang) because of its builtin concurrent programming paradigm to allow for parallelization of the solvers. The code for both methods can be found here.

Durand-Kerner

Durand-Kerner Method video

The video for Durand-Kerner can be found here https://youtu.be/5JcpOj2KtWc. It is highly recommended that you have seen Fixed Point Iteration Systems of Equations with Banach and Horner's Method. The primary sources in this video are:

Aberth-Ehrlich

Aberth-Ehrlich Method video

The video for Aberth-Ehrlich can be found here https://youtu.be/XIzCzfMDSzk. It is recommended that you have seen Durand-Kerner and Newton Fractals.

Primary sources used in this video are:

Execution Instructions

You may can run the program online via CodingGround. For documentation and instructions on how to install Go visit https://golang.org/. If using apt-get then installation could be as simple as sudo apt-get install golang-go. You can run the program via the command-line using the command go run DurandKernerAberthEhrlich.go which will run using the debugger or type go build DurandKernerAberthEhrlich.go followed by ./DurandKernerAberthEhrlich which will compile and run the program. Feel free to use your favorite IDE such as Geany or Visual Studio Code.