Returns the determinant of a matrix.
MDETERM(array)
returns the determinant of the square matrix array, which may be either an inline array or a range, containing all numbers.
MDETERM returns a single value. It need not be entered as an array formula.
MDETERM({4,1;2,5})
returns 18, that is 4*5 - 1*2.
MDETERM(A1:B2)
where A1, B1, A2, B2 contain 4, 2, 2, 3 respectively, returns 8, that is 4*3 - 2*2.
Structural Engineering - Analyzing a Truss System
Let's consider a simple truss system in structural engineering. A truss is a framework of interconnected straight members (like beams) that is typically used in bridges and roofs. Engineers need to analyze these systems to ensure they are stable and can support the required loads.
One method for analyzing a truss is using the stiffness matrix method. This method involves setting up a system of linear equations that describe the relationship between the forces applied to the truss and the resulting displacements (movement) of its joints.
The determinant of the stiffness matrix is a critical value. Here’s why:
Imagine a simple 2D truss with three members and two joints (excluding supports). We want to check the stability of this truss using its stiffness matrix. We've simplified the problem to a 2x2 matrix for this example.
The stiffness matrix K represents the relationship between applied forces and joint displacements.
Where:
We will use the MDETERM function to find the determinant of this matrix to check the stability of our simplified truss.
Here is how you would set this up in a spreadsheet:
Table 1: Stable Truss System
A | B | C | ||
|---|---|---|---|---|
1 | Stiffness Matrix (K) | | | |
2 | | k11 | k12 | |
3 | k21 | 1000 | 200 | |
4 | k22 | 200 | 500 | |
5 | | | | |
6 | Determinant (det(K)) | MDETERM(B3:C4) | | |
7 | Result | | 460000 | |
8 | Conclusion | | Stable (det ≠ 0) |
Explanation:
Table 2: Unstable Truss System
Now, let's change one of the stiffness values to represent an instability, perhaps due to a poorly designed member or a faulty connection.
A | B | C | ||
|---|---|---|---|---|
1 | Stiffness Matrix (K) | | | |
2 | | k11 | k12 | |
3 | k21 | 1000 | 500 | |
4 | k22 | 200 | 100 | |
5 | | | | |
6 | Determinant (det(K)) | MDETERM(B3:C4) | | |
7 | Result | | 0 | |
8 | Conclusion | | Unstable (det = 0) |
Explanation:
In this application, the MDETERM function is not just a mathematical tool; it is a fundamental part of the safety analysis for physical structures.
PRODUCT & FEATURES
RESOURCES
Terms | Privacy | Spam Policy
© 2026 Zapof