The Excel MINVERSE Function

Matrix Inversion

The inverse of a square matrix is the matrix with the same dimensions that, when multiplied with the original matrix, gives the Identity Matrix:

Identity Matrix

If an inverse exists, the original matrix is known as invertible. Otherwise, the orginal matrix is described as singular.

Further details of the Matrix Inversion are given on Wikipedia

Function Description

The Excel MINVERSE function calculates the inverse of a square matrix.

The syntax of the function is:

MINVERSE( array )

where the array argument is an array of values representing a square matrix (i.e. a matrix that has the same number of rows as columns).

The resulting inverse matrix has the same number of rows and columns as the original supplied array. Be aware, however, that the result from the Minverse function result is calculated to approximately 16 decimal places, so you may get some small rounding errors.

Note: as the Excel Minverse function returns an array of values, the function must be entered into your Worksheet as an Array Formula.

Inputting Array Formulas

To input an array formula, you need to first highlight the range of cells that the function is to be entered into. Type the function into the first cell of the range, and press Ctrl + Shift + Enter.

See the Excel Array Formulas page for further details.

Minverse Function Example

In the example below, the Excel Minverse function is used to find the inverse of the 4x4 matrix in cells A1-D4 of the example spreadsheet.

The Minverse function, entered into cells F1-I4 of the spreadsheet, is:

=MINVERSE( A1:D4 )

The formula can be seen in the formula bar of the 'Result' spreadsheet. The curly braces { } show that it has been input as an Array Formula.

 Original Matrix and Formula:
Original Matrix for Minverse Function Example
 Result (formula entered as an array formula):
Result of Minverse Function Example

We can test the Minverse function by multiplying the two matrices in the above spreadsheet, using the Mmult Function. This gives the 4x4 Identity Matrix:

4x4 Identity Matrix

For further information and examples of the Excel Minverse function, see the Microsoft Office website.


Minverse Function Errors

If you get an error from the Excel Minverse function this is likely to be one of the following:

Common Errors
#VALUE! -

Occurs if either:

  • The supplied array contains a blank or a non-numeric value;
  • The supplied array does not have equal numbers of rows and columns.
#NUM! - Returned if the supplied matrix is singular - i.e. there is no inverse for the supplied matrix.
#N/A -

Occurs in cells outside the range of the resulting matrix.

For example, if, in the example above, we had highlighted cells F1-I5 before entering the Minverse function, the 'additional' cells, F5-I5 are not part of the resulting matrix. Therefore, these cells will display the #N/A error.

Be aware also that if, when entering the Minverse function, you don't highlight the entire range of cells that is needed to display the resulting matrix, Excel will just show the part of the result that fits into the highlighted range. There will be no error message to let you know that your highlighted range is not big enough.

This will also be the case if you fail to enter the formula as an array formula - the cell that you enter the formula into will just show you the first entry of the inverse matrix.