MINVERSE


Returns the inverse of a matrix.

Syntax:

MINVERSE(array)


returns the inverse of the square matrix array, which may be either an inline array or a range, containing all numbers.

A matrix has an inverse if and only if its determinant is not zero.

Example:

MINVERSE({4,2;3,2})

when entered as an array formula in cell B3, returns {1,-1;-1.5,2}, so that cells B3, C3, B4, C4 show 1, -1, -1.5, 2 respectively.

MINVERSE(A1:B2)

when entered as an array formula in cell B3, where cells A1, B1, A2, B2 contain 4, 2, 3, 2 respectively, returns 1, -1, -1.5, 2 in cells B3, C3, B4, C4 respectively.


Application:

Inventory & Pricing


A company sells three different product bundles: Bundle A, Bundle B, and Bundle C. Each bundle contains a specific number of three different items: Item X, Item Y, and Item Z. The company knows the total revenue for different combinations of bundles sold, and they want to find the price of each individual item.


The Problem:


  • Scenario 1: Selling 5 of Bundle A, 3 of Bundle B, and 2 of Bundle C generated a total revenue of $1,050.
  • Scenario 2: Selling 4 of Bundle A, 6 of Bundle B, and 1 of Bundle C generated a total revenue of $1,250.
  • Scenario 3: Selling 2 of Bundle A, 1 of Bundle B, and 4 of Bundle C generated a total revenue of $675.


The Data Table:


This information can be organized into a table that shows the number of bundles sold in each scenario.

Scenario

Bundle A

Bundle B

Bundle C

Total Revenue

A
B
C
D
E
1
1
5
3
2
$1,050.00
2
2
4
6
1
$1,250.00
3
3
2
1
4
$675.00

Let:


  • x = price of Item X
  • y = price of Item Y
  • z = price of Item Z


The number of each item in a bundle is known:


  • Bundle A: 10 of Item X, 5 of Item Y, 2 of Item Z
  • Bundle B: 8 of Item X, 6 of Item Y, 3 of Item Z
  • Bundle C: 12 of Item X, 4 of Item Y, 6 of Item Z


The system of equations is derived by multiplying the number of bundles sold by the item quantities within each bundle, and then setting this equal to the total revenue for each scenario.





This simplifies to:





Matrix A (Coefficients):



Matrix B (Total Revenue):




Solution using MINVERSE:


To solve for the prices of the items (), we can use the inverse of matrix A. The equation to solve for is


  1. Enter the values for Matrix A into a spreadsheet (e.g., A2:C4).
  2. Use the MINVERSE function on a new range of cells to find the inverse of A. =MINVERSE(A2:C4)



The result of MINVERSE(A) is:




Calculating the prices (X):


To find the prices of each item, you multiply by .


  • Price of Item X () =
  • Price of Item Y () =
  • Price of Item Z () =



The Solution:


  • Price of Item X: $1.38
  • Price of Item Y: $4.83
  • Price of Item Z: $34.25


This example demonstrates how MINVERSE can be a powerful tool for solving systems of linear equations in real-world scenarios like financial analysis or inventory management.






This page is protected by Google reCAPTCHA. Privacy - Terms.
 
Built using Zapof