Module solve

Module solve 

Source
Expand description

§Numerical Equation Solvers

This module provides numerical methods for solving linear and non-linear systems of equations. It includes functions for solving linear systems using Gaussian elimination (via RREF) and non-linear systems using Newton’s method.

Enums§

LinearSolution
Represents the solution to a system of linear equations.

Functions§

solve_linear_system
Solves a system of linear equations Ax = b.
solve_nonlinear_system
Solves a system of non-linear equations F(X) = 0 using Newton’s method.