Returns the inverse of a matrix.
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.
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.
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:
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:
The number of each item in a bundle is known:
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
The result of MINVERSE(A) is:
Calculating the prices (X):
To find the prices of each item, you multiply by .
The Solution:
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.
PRODUCT & FEATURES
RESOURCES
Terms | Privacy | Spam Policy
© 2026 Zapof