Locoism said:
Homework Statement
Find the general solution to the following differential equations
y'1 = -12y1 + 13y2 +10y3
y'2 = 4y1 - 3y2 - 4y3
y'3 = -21y1 +21y2 +19y3
The Attempt at a Solution
I'm a little unsure about what to do at the end, or what form to put it in.
The eigenvalues are
λ1 = 5, λ2 = -2, λ3 = 1
and the eigenvectors are
v1 = [1, -1, 3], v2 = [1, 0, 1], v3 = [1, 1, 0] (respectively)
so once I have that, what do I do? I need to put them into an exponential form like
a*eλ2*t*v1 + b*eλ2*t*v2 + c*eλ3*t*v3 ?
I don't understand why, or what this means.
Your system of diff. equations is
coupled, meaning that the three derivative components all involve the three y components. It's much easier to solve an uncoupled system such as
z
1' = a
1z
1
z
2' = a
2z
2
z
3' = a
3z
3
and this is the primary motivation for diagonalizing a system of diff. equations.
Your system can be represented as a matrix equation as:
Y' = AY
If we can find a diagonal matrix D that is similar to A, then we can find a related system of equations that is uncoupled, so easier to solve.
Since you have already found that there are three distinct eigenvalues, that means your matrix A is diagonalizable. You have also found three eigenvectors for the three eigenvalues.
Form a matrix P whose columns are the eigenvectors. The order doesn't matter, but the order will determine which values appear on the diagonal of matrix D (the diagonal matrix).
Let Z = P
-1Y, or equivalently, Y = PZ.
Then Z' = P
-1Y' = P
-1AY = P
-1APZ = DZ, where D is the diagonal matrix. As already noted, this system is easy to solve, and its solution is given by:
Z = Z(t) = \begin{bmatrix}e^{\lambda_1 t} & 0 & 0 \\ 0 & e^{\lambda_2 t} & 0 \\ 0&0&e^{\lambda_3 t} \end{bmatrix} \begin{bmatrix}c_1 \\ c_2 \\ c_3 \end{bmatrix}
We're not quite done. We're interested in Y = Y(t), not Z(t).
Since Y = PZ, then our solution is
Y = Y(t) = PZ = P\begin{bmatrix}e^{\lambda_1 t} & 0 & 0 \\ 0 & e^{\lambda_2 t} & 0 \\ 0 & 0 & e^{\lambda_3 t}\end{bmatrix}\begin{bmatrix}c_1 \\ c_2 \\ c_3 \end{bmatrix}