Each method is implemented in a separate Jupyter Notebook, and the code is designed to solve a system of three linear equations with three variables. Jacobi's method is an iterative algorithm for ...
Euler Method: The simplest numerical method for solving ODEs, which uses the derivative to project forward. [ y_{n+1} = y_n + h \cdot f(x_n, y_n) ] Heun's Method (Improved Euler Method): A two-step ...