A Calculator to solve square matrices systems using Cramer's Rule and Laplace's Theorem. This script is designed to assist in the study and resolution of exercises in Linear Algebra classes.
The code was inspired in this calculator in C++ made by RafaelGSS: https://github.com/RafaelGSS/CramerMethod
- Clone this repository and start program the program by running (Python 3.7 is required):
$ # Python 3.7 is required. If you don't have it, read the Python docs to install.
$ # https://www.python.org/downloads/release/python-370/
$ python main.py # If Python 3 is default
$ python3 main.py # If you have Python 2 installed as default
-
Enter the Matrix formatted with SPACES (for columns) and ENTERS (for lines):
-
Check if your system is mounted correctly and Enter Y for YES or N for NO (YES is default):
-
The main determinant, all matrices with the substitutions and their respective determinants will be displayed.
-
And finally, the solution set will also be displayed at the end of the program.