Math Models
A collection of numerical methods and mathematical algorithms implemented from scratch in C++ and Python, using only standard libraries.
Project Overview
A growing collection of classic numerical methods, implemented independently in both C++ and Python under one self-imposed rule: only standard libraries allowed, with any needed functionality written from scratch.
Implemented Methods
- Determinant (Sarrus’ Rule): Computing 3x3 matrix determinants directly.
- Euler’s Method: Numerically approximating solutions to ordinary differential equations.
- Linear Shooting Method: Solving boundary value problems by converting them to initial value problems.
- Trapezoidal Rule: Numerical integration by approximating the area under a curve.