1

My guess is : Given $A$ a square matrix, then $A^{-1}=det(A)^{-1}adj(A)$ where $det(A)^{-1}$ is multiplication inverse of $det(A)$

Aditya
  • 45

1 Answers1

2

Most likely, whatever algorithms you would use to find the inverse of an invertible real matrix will work completely unchanged to find the inverse of an invertible matrix over any field. And the reason why they work will be similarly unchanged.

(I say "most likely" because there do exist some algorithms for doing matrix operations that depend somewhat on the field... but it's very unlikely that you would consider using them)

The formula you wrote is true, but its mainly meant for theoretical reasoning, not for doing computation.