Finding a vector associated with an eigenvalue

Zem
Messages
33
Reaction score
0
Find a general solution of the given system using the method (A - \lambdaI)V2 = V1.

x'_1 = 2x_1 - 5x_2, x'_2 = 4x_1 - 2x_2
x&#039; = <br /> \left(\begin{array}{cc}2&amp;-5\\4&amp;-2\end{array}\right)

characteristic equation:
(2 - \lambda)((-2) - \lambda) + 20 = 0
\lambda^2 + 16 = 0
\lambda = 4i

Using this method:
(A - 4i\lambda)V_2 = V_1
\left(\begin{array}{cc}2-4i&amp;-5\\4&amp;-2-4i\end{array}\right) * \left(\begin{array}{cc}a\\b\end{array}\right) = \left(\begin{array}{cc}0\\0\end{array}\right)

(2 - 4i)a - 5b = 0
4a - (-2 - 4i)b = 0

When there are no complex roots, I can set a or b = 1 to find the value of the other. And when I row reduce this in my ti89, I get

\left(\begin{array}{cc}1&amp;i 0\\0&amp;0 0\end{array}\right) with a space between the i and 0 in the top row, and the two 0's in the 2nd row.

How do I find a and b in this problem? When I find their values I will have V_1.
 
Last edited:
Physics news on Phys.org
What is your vector space V, and what field F is it over? For the moment I'm going to assume V = \mathbb{C}^2 and F= \mathbb{C}.

Also, it is not stated but you must mean that x_1&#039;, x_2&#039; are the coordinates of the image of (x_1,x_2) under the linear operator T defined by the equations you have for x_1&#039;, x_2&#039;. ie:

T(x_1,x_2) = (x_1&#039;, x_2&#039;)

(By the way, have you verified that T is in fact linear?)

Zem said:
Using this method:
(A - 4i\lambda)V_2 = V_1
\left(\begin{array}{cc}2-4i&amp;-5\\4&amp;-2-4i\end{array}\right) * \left(\begin{array}{cc}a\\b\end{array}\right) = \left(\begin{array}{cc}0\\0\end{array}\right)

(2 - 4i)a - 5b = 0
4a - (-2 - 4i)b = 0
There is a sign error here, this should be:

(2 - 4i)a - 5b = 0
4a + (-2 - 4i)b = 0

When there are no complex roots, I can set a or b = 1 to find the value of the other. And when I row reduce this in my ti89, I get

How do I find a and b in this problem? When I find their values I will have V_1.
You don't need a calculator to do this. Simply choose one of the above two equations and solve for one of the variables in terms of the other. As a check, plug that value into the other equation (you should get an identity). You'll end up with an equation for a in terms of b (or vice versa). Choose a value for a or b that makes (a, b) non-zero, and voila, you have an eigenvector for your linear operator corresponding to the eigenvalue \lambda = 4i.

edit: Re-reading your question, it asks for a *general* solution, so you can leave your answer in terms of a or b, just be sure to include the proper restrictions on a or b so that your answer gives only the non-zero solutions.
 
Last edited:
Originally Posted by nocturnal
You don't need a calculator to do this. Simply choose one of the above two equations and solve for one of the variables in terms of the other. As a check, plug that value into the other equation (you should get an identity). You'll end up with an equation for a in terms of b (or vice versa). Choose a value for a or b that makes (a, b) non-zero, and voila, you have an eigenvector for your linear operator corresponding to the eigenvalue .
My problem was that I was stuck on assigning b = 1, but it appears much better to make b = a's coefficient.
When I set b = (2-4i), a = 5, so
V_1 = \left(\begin{array}{cc}5\\2-4i\end{array}\right)
:cool:
 
Did you see the edit at the bottom of my post? The problem states that its looking for the *general* solution, so you wanto to find the set of all such vectors that satisfy this equation.
 
Yes, I was just stuck in the middle of the problem. Now all I have to do is put the real and complex parts of the solutions together to get the general solutions of x_1 and x_2. Piece of cake.

I am curious, though, what you were saying about T and F. Is that stuff for linear algebra? We did not cover anything regarding vectors over fields or T. Perhaps I should have mentioned that this was an ODE homework problem.
Thanks!
 
Zem said:
I am curious, though, what you were saying about T and F. Is that stuff for linear algebra? We did not cover anything regarding vectors over fields or T. Perhaps I should have mentioned that this was an ODE homework problem.
Thanks!
Yes, those are terms from Linear Algebra. Essentially a vector space is a set of "vectors" satisfying certain properties. The vectors can be acted on by "scalars" (elements of a field - another set satisfying certain properties). A Linear Operator is a function satisfying certain properties that maps a vector space into itself. It is in the context of Linear Operators that we talk about eigenvectors and eigenvalues. If you take Linear Algebra they will go into great detail about these concepts.
 
Last edited:
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top