Introduction to Linear Algebra, Gilbert Strang, 2016 (Wellesley-Cambridge Press) - A fundamental textbook that thoroughly covers concepts of matrix invertibility, singularity, linear independence, and determinants.
Mathematics for Machine Learning, Marc Peter Deisenroth, A. Aldo Faisal, and Cheng Soon Ong, 2020 (Cambridge University Press)DOI: 10.1017/9781108679989 - This book provides a treatment of matrix invertibility and its implications, specifically tailored for readers in machine learning.
numpy.linalg.inv, NumPy Developers, 2024 - Official documentation for computing the inverse of a matrix, explaining its behavior when encountering singular matrices.
numpy.linalg.solve, NumPy Developers, 2024 - Official documentation for solving linear systems, detailing how the function handles cases involving singular matrices.