Introduction to Linear Algebra, Gilbert Strang, 2016 (Wellesley-Cambridge Press) - A fundamental textbook that thoroughly covers matrix inverses, solving linear systems, and the theoretical conditions for invertibility.
Numerical Linear Algebra, Lloyd N. Trefethen and David Bau III, 1997 (SIAM (Society for Industrial and Applied Mathematics))DOI: 10.1137/1.9781611971212 - A foundational text on numerical linear algebra, offering detailed insights into the computational efficiency and stability of algorithms for solving linear systems, contrasting direct methods with matrix inversion.
numpy.linalg.inv, NumPy Developers, 2024 - The official NumPy documentation for calculating the inverse of a matrix, providing details on its usage, parameters, and error handling for singular matrices.
numpy.linalg.solve, NumPy Developers, 2024 - The official NumPy documentation for directly solving linear systems $Ax=b$, explaining its advantages in terms of computational performance and numerical stability over methods involving explicit matrix inversion.