Root-finding algorithms implementation.
Contains Newton's method and dichotomy method implementation.
Calculates zero of function
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;