Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Post History
I recommend Sage. It is an open-source general purpose mathematics software based on Python. You can install it from the link above, or for quick computations, you can also just use their free serv...
Answer
#1: Initial revision
I recommend [Sage](https://www.sagemath.org/). It is an open-source general purpose mathematics software based on Python. You can install it from the link above, or for quick computations, you can also just use their free server: https://sagecell.sagemath.org/ You can find many resources on inverting matrices in Sage online, but here is a quick example in a Sage interpreter: ```py sage: M = Matrix([[1, 4], [2, 3]]) sage: M [1 4] [2 3] sage: M.inverse() [-3/5 4/5] [ 2/5 -1/5] ```