News

Matrix Operations Calculator (Rank, Determinant, and Inverse) This project implements algorithms in both Haskell and Python to calculate the rank, determinant, and inverse of an NxN matrix using ...
Recursive Determinant Calculator This code finds the determinant of square matrices by reducing the size of the matrix from NxN to (N-1)x (N-1), until the final matrix is 2x2. (Using recursion is ...