A matrix is a rectangular array of numbers. For our purposes, let z{m,n} stand for the number z in the mth row and nth column of a matrix.
Example -- Consider the 2x2 matrix named ' A'. Let A be composed of numbers z{1,1}=a, z{1,2}=b, z{2,1}=c, and z{2,2}=d.
Or more simply, the matrix A is set up as
| a b |
| c d |
By definition: If 'A' is square matrix, and if a matrix 'B' can be found such that AB=BA=I, then A is said to be invertible, and B is called an inverse of A.
Now, go back to our Example 2x2 matrix named 'A'. If (ad - bc) is not equal to zero, then the inverse of A, called A^(-1), is equal to
(1/ (ad-bc) ) times the matrix
| d (-b) |
| (-c) a |
where z{1,1}=d, z{1,2}= -b, z{2,1}= -c, and z{2,2}=a.
OR
| (d/(ad-bc)) (-b/(ad-bc)) |
| (-c/(ad-bc)) (a/(ad-bc)) |
where z{1,1} =(d/(ad-bc)), z{1,2} =(-b/(ad-bc)), z{2,1}=(-c/(ad-bc)), and z{2,2} =(a/(ad-bc)).
2006-06-09 09:04:12
·
answer #1
·
answered by DL 2
·
2⤊
0⤋
Using Cramer's rule is one approach, but for larger matrices it is more computationally intensive. A more practical approach from a numerical standpoint is to do Gaussian elimination. Remember when solving a system of linear equations Ax=b, you form the matrix A|b where the column vector b is adjoined as a new column. Performing row operations gets you, assuming the system has a unique solution, to the form I|c, where c is the vector in question. The question of finding a matrix inverse is similar; you are solving an equation AX=I, where X is a matrix and where I is the identity matrix. I'm not going to work any examples, but this should give you a start.
2006-06-09 14:14:23
·
answer #2
·
answered by spb1968 3
·
0⤊
0⤋
Let me give you an easy way.
| 2 -5 |
| 7 -9 |
To find the inverse, flip and switch. Flip the top left number and the bottom right number:
| -9 -5 |
| 7 2 |
Then switch the sign on the other two numbers:
| -9 5 |
| -7 2 |
The final step is to divide each number by the determinant:
| -9 5 | -18
| -7 2 | -(-35)
=17 <=determinant
| -9/17 5/17 |
| -7/17 2/17 | <=final answer
2006-06-09 16:25:33
·
answer #3
·
answered by Caitlin B 2
·
0⤊
0⤋
Let A be the given matrix
1- A must be square matrix
2- Calculate the determinant of A : det(A)
3- If det(a) = 0 then A is a singular matrix and has no inverse
4- If det(a) doesn't =0 so A is a non-singular matrix and have an inverse and we proceed as follows
5- Get At ( the transpose of A by changing rows to columns and vise verse
5- Calculate the adjacent matrix of At by replacing every element in At by its conjugate element ( the value of the determinant you get by eliminating the row and column containing that element multiplied by +ve or -ve sign according to its location ) to get adj(a)
6- A^(-1) = 1/(det(A)) * adj(A)
2006-06-09 14:15:35
·
answer #4
·
answered by a_ebnlhaitham 6
·
0⤊
0⤋
The condition to find inverse of a matrix
1. it should be a square matrix.
2. it should not be singular, ie det (A) should not be equal to 0.
Now calculate adjoint of the matrix.
A_inverse = 1/det(A) * Adj(A)
2006-06-09 13:51:53
·
answer #5
·
answered by Varun G 3
·
0⤊
0⤋
This website should help.
This website will tell you how to work inverse matrices
www.analyzemath.com/Calculators/InverseMatrixCalculator.html
also check out www.quickmath.com for a calculator.
2006-06-09 14:35:48
·
answer #6
·
answered by Sherman81 6
·
0⤊
0⤋