I want to check the space complexity of
matrix inversion,
matrix adjoint and
matrix determinant.
Most of the literature mention the time complexity (for the inversion there are $O(n^3)$ solutions and for the determinant $O(n^4)$ and $O(n^3)$). But I haven't been able to find literature where mentions the space complexity for these three operations.
Do you guys know any good references covering the space complexity of some algorithms for these operations ?
Thank you.