- Develop a
Parser
class to handle equation strings. - Convert the equations into matrix form (coefficients and constants).
- Validate the input for correctness.
-
Gauss Elimination
-
Gauss-Jordan Elimination
-
LU Decomposition
-
Jacobi Method
-
Gauss-Seidel Method
EquationSolver/
│
├── parser.py # Contains the Parser class for input handling and matrix conversion.
├── solvers.py # Implementation of the numerical methods for equation solving.
├── main.py # Entry point
└── README.md # Project documentation.