Difference between revisions of "Manuals/calci/MINVERSE"

From ZCubes Wiki
Jump to navigation Jump to search
Line 34: Line 34:
  
 
== Examples ==
 
== Examples ==
<math>Matrix A
+
<math>Matrix A=
 
\begin{bmatrix}
 
\begin{bmatrix}
 
4 & 3 \\
 
4 & 3 \\
Line 46: Line 46:
 
3 & -4 \\
 
3 & -4 \\
 
\end{bmatrix}
 
\end{bmatrix}
 
+
</math>
 
MATRIX A
 
MATRIX A
 
A=(3      4
 
A=(3      4

Revision as of 06:12, 1 January 2014

MINVERSE(arr)


  • is the array of numeric elements

Description

  • This function gives the inverse matrix for the given matrix.
  • We have to find a inverse of a matrix then it should satisfy the following conditions
  • 1.A matrix must be a square matrix.
  • 2.It's determinant not equal to 0.
  • Let be the 2x2 matrix with the elements

.

  • Then the inverse of matrix is denoted by .
  • Now let be the matrix is of order .
  • Then the inverse of is
  • Where is the adjoint of .
  • Adjoint is the matrix formed by taking the Transpose of the Co-factor matrix of the original matrix.
  • Also , where is the identity matrix.
  • Non-square matrices do not have inverses.
  • Not all square matrices have inverses.
  • A square matrix which has an inverse is called invertible or non-singular, and a square matrix without an inverse is called non-invertible or singular.
  • This function will return the result as error when
1. Any one of the cell is non-numeric or any cell is empty or contain text
2. Suppose number of rows not equal to number of columns

Examples

MINVERSE(B5:C6)= MATRIX A A=(3 4

     6       8)

MINVERSE(C4:D5)=Null, because its det value is 0. MATRIX A A=(2 3

  4     7)

MINVERSE(B4:C5)=(3.5 -1.5

               -2           1)

See Also

References