Expand description
Equation solving — linear, quadratic, systems of equations.
Enums§
- Solutions
- Solutions to an equation.
Functions§
- newton_
raphson - Newton-Raphson root finding for f(x) = 0.
- solve_
cubic - Solve a cubic equation ax³ + bx² + cx + d = 0 using Cardano’s method.
- solve_
linear - Solve a linear equation ax + b = 0.
- solve_
quadratic - Solve a quadratic equation ax² + bx + c = 0.
- solve_
system_ 2x2 - Solve a system of 2 linear equations via Cramer’s rule: a1x + b1y = c1 a2x + b2y = c2