How Do I Calculate the Inverse of Matrix P and Determine Eigenvectors?

  • Thread starter Thread starter matrix_204
  • Start date Start date
  • Tags Tags
    Diagonalization
AI Thread Summary
To calculate the inverse of a 2x2 matrix P, use the formula P^-1 = (1/det(P)) * [d, -b; -c, a], where det(P) = ad - bc. The discussion highlights the importance of understanding the arithmetic involved in finding eigenvectors, which can be derived from eigenvalues using the equation A - λI. While some suggest using computational tools for convenience, it's recommended to practice by hand to grasp the concepts better. The conversation also touches on the challenges of determining eigenvectors and the need for a solid understanding of the underlying mathematics. Mastery of these topics is essential for effective application in linear algebra.
matrix_204
99
0
Could someone tell me how to get the P(inverse), P^-1. For example I read all the examples in my book and it has like given the matrix for P and then it finds the matrix for P(inverse)Vo , how do i find P^-1. Plz help me quickly.
Ex. P= | 2 -1 |
asdfasf| 3 as1 |
and Vo=| 1 |
iiiiiiiiiiiiiiiiii| 1 |

so P^-1Vo=1/5 [ 2 -1](transpose)
 
Last edited:
Physics news on Phys.org
For two by two matrices, it is easy.

For a 2x2 matrix

A = \left(\begin{array}{cc}a&b\\c&d\end{array}\right)

The inverse is just...

A^{-1} = \frac{1}{\|A\|} \left(\begin{array}{cc}d&amp;-b\\-c&amp;a\end{array}\right)<br />
 
thank you very much, it saved me so much time, also, is there a formula for a 3x3 matrix too or no.

btw is ||A||= a^2 + b^2 - c^2 - d^2,
just wondering, i don't know if that's right but what would it be for a 2x2 matrix.
 
Last edited:
ok got it, thanx
 
And no, what I had

\|A\| is the determinant of A. For a 2x2 matrix

A = \left(\begin{array}{cc}a&amp;b\\c&amp;d\end{array}\right)

\|A\| = ad - bc
 
I have one more question, because sometimes its hard to figure out the eigenvector, i was wondering is there a easier way to figure what what the eigenvectors are besides using the equation
http://mathworld.wolfram.com/eimg422.gif
 
Last edited by a moderator:
I don't recall so. But please, do yourself a favor and don't work them out by hand. It's just too much boring arithmetic...
 
matrix_204 said:
I have one more question, because sometimes its hard to figure out the eigenvector, i was wondering is there a easier way to figure what what the eigenvectors are besides using the equation
http://mathworld.wolfram.com/eimg422.gif

Just to clarify terminology, that equation you linked to gives the eigenvalues, which you then use to find the eigenvectors by looking at the nullspace of A-\lambda I, where \lambda is an eigenvalue.

I do suggest you work these out by hand when first learning them. You're more likely to understand what an eigenvector is if you're swimming through the arithmetic trenches than if you're simply entering a matrix into a computer or calculator and having it spit out some answers for you. Of course if you feel you have fully mastered the concept, by all means use mechanical aid (and certainly don't shy from using it to check your work). Just my opinion.
 
Last edited by a moderator:
Back
Top