Skip to content

Nikolay1998/numerical-root-finding-algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Numerical root finding algorithms

Root-finding algorithms implementation. Contains Newton's method and dichotomy method implementation. Calculates zero of function $(x^3 - 2.7x^2 - 3.5x + 0.8)$.

Run with mvn javafx:run.

Application have JavaFX GUI where user can specify:

  • range for root searching;
  • epsilon - minimal segment length after which program return result of searching, used for both Newton's and dichotomy methods;
  • delta - minimal value after which program return result of searching, used for dichotomy method;
  • approximation - starting approximation point, used for Newton's method;

img

Releases

No releases published

Packages

No packages published

Languages