Implement the Gauss-Jordan elimination method to solve systems of linear equations. This method transforms the augmented matrix into its reduced row echelon form (RREF), providing the solution to the system
Tasks:
- Allow users to input the system's order and coefficients
- Perform row operations to obtain a diagonal matrix with 1s on the main diagonal
- Display intermediate steps for educational purposes
- Output the final solution for each variable
Implement the Gauss-Jordan elimination method to solve systems of linear equations. This method transforms the augmented matrix into its reduced row echelon form (RREF), providing the solution to the system
Tasks: