This is a Python implementation of Cramer's Rule to solve systems of linear equations. It uses the NumPy library for efficient matrix operations and provides step-by-step outputs including matrices D, Dx, and Dy.
- Solves systems of 2 or 3 variable equations (if a unique solution exists)
- Displays matrix steps (D, Dx, Dy)
- Simple and clean CLI-based interface
- Language: Python
- Library: NumPy
This script can be used to solve equations of two or three variables. You just need to input coefficients and constants, and the program handles the rest.
python cramers_rule.pyClick Here for video demo.