eqsolver
- A Equation Solver library for RustThis is a Rust Library aimed at applying Numerical Methods to solve Equations of many sorts.
Currently the library provides methods for solving single and multivariate functions as well as Ordinary Differential Equations and systems of them.
The library is passively-maintained, which means there will be no other features added however issues on the GitHub will be answered and solved. Contributions and feedback to this library are more than welcome!
There are 2 types of root-finders for single variable functions, the Secant Method and Newton-Raphson's method, in which the latter can either be given the derivative of the function if available or the function can be approximated using finite differences.
Example of Newton-Raphson's method with finite differences. ```rust use eqsolver::single_variable::FDNewton;
let f = |x: f64| x.exp() - 1./x; // e^x = 1/x let solution = FDNewton::new(f).solve(0.5); // Starting guess is 0.5 ```
There is one root-finder for multivariate functions and that is Newton-Raphson's method for systems. The library also provides a way solve non-linear square problems using the Gauss-Newton algorithm.
This part is heavily built using The Linear Algebra Library for Rust nalgebra.
Example of Newton-Raphson's method for system of equations
```rust
use eqsolver::multivariable::MultiVarNewton;
use nalgebra::{Vector2, Matrix2};
// Want to solve x^2 - y = 1 and xy = 2
let F = |v: Vector2
// Jacobian of F
let J = |v: Vector2
let solution = MultiVarNewton::new(F, J).solve(Vector2::new(1., 1.)); ```
The library provides a single struct
for solving ODEs which can be modified to to use Euler Forward, Heun's Method or Runge-Kutta 4.
Example of solution for a single first order ODEs ```rust let f = |t: f64, y: f64| t * y; // y' = f(t, y) = ty let (x0, y0) = (0., 0.2); let xend = 2.; let stepsize = 1e-3;
let solver = ODESolver::new(f, x0, y0, stepsize); let solution = solver.solve(xend).unwrap(); ```
Example of system of first order ODEs
```rust
let f = |t: f64, y: Vector2
let solver = ODESolver::new(f, x0, y0, stepsize); let solution = solver.solve(xend).unwrap(); ```
Note there is no explicit solver for higher order ODEs since higher order ODEs can be rewritten as a system of first order ODEs.
The example above is equivalent to solving y'' = t-y
.