Finding the Particular solution to a Diff. Eq. System

Click For Summary
The discussion revolves around finding a particular solution to a system of differential equations represented by W' = AW + r, where A is a matrix and r is a constant vector. The user has derived the homogeneous solution and is attempting to find the particular solution using a specific form involving derivatives. A key point raised is that the non-homogeneous part of the solution should be constant, leading to a simpler approach by solving for W_p directly. Additionally, there is a caution regarding a missing minus sign in the equations, which affects the solution process. Understanding these aspects is crucial for correctly determining the particular solution.
dumbdumNotSmart
Messages
41
Reaction score
3
Mentor note: moved from mathematics forums, therefore no homework template

Hello mates. I have a System of Differential Equations on my hands.

$$ W' = \left(\begin{matrix} 4 & 2 \\ 2 & 4 \end{matrix} \right) W + \begin{pmatrix} 6 \\6 \end{pmatrix}$$
where transposed W is (x y z). I have found the homogenous solution to said system. Finding the Particular solution is what I am not sure about. So far I have tried acquiring the particular using the homogenous solution, which I found to be:
$$ W_H = c_1 e^{6t} \left(\begin{matrix} 1 \\ 1 \end{matrix} \right) + c_2e^{2t} \begin{pmatrix} 1 \\ -1 \end{pmatrix}$$
Particular solution I am looking for is :
$$ W_P=\begin{pmatrix} e^{6t} & e^{2t} \\ e^{6t} & -e^{2t} \end{pmatrix} \begin{pmatrix} u_1 \\u_2 \end{pmatrix} $$
And we can find it with the following equation (u' would be the derivative of u):
$$ \begin{pmatrix} 6\\6 \end{pmatrix} =\begin{pmatrix} e^{6t} & e^{2t} \\ e^{6t} & -e^{2t} \end{pmatrix} \begin{pmatrix} u_1' \\u_2' \end{pmatrix} $$

This gives us the following equations:

$$ u_1' e^{6t} + u_2' e^{2t} =6 \\ u_1'e^{6t}-u_2'e^{2t}=6 \\ \Rightarrow u_1=-e^{-6t} \land u_2=0 $$

So my question is, when we integrate u2', would we consider the constant of integration... or not because we are finding the particular? Is my process correct? Thank you peeps
 
Last edited by a moderator:
Physics news on Phys.org
dumbdumNotSmart said:
Particular solution I am looking for is :
I don't understand why you would proceed from here on in the way you do. The matrix defining the homogeneous part of the differential equation is invertible, so calculating a particular solution just amounts to taking an inverse.

And what is a "peep"?
 
Krylov said:
And what is a "peep"?
Singular of "peeps" -- or "people".
 
Mark44 said:
Singular of "peeps" -- or "people".
It sounded odd to me, thank you for the clarification.
 
dumbdumNotSmart said:
Mentor note: moved from mathematics forums, therefore no homework template

Hello mates. I have a System of Differential Equations on my hands.

$$ W' = \left(\begin{matrix} 4 & 2 \\ 2 & 4 \end{matrix} \right) W + \begin{pmatrix} 6 \\6 \end{pmatrix}$$
where transposed W is (x y z). I have found the homogenous solution to said system. Finding the Particular solution is what I am not sure about. So far I have tried acquiring the particular using the homogenous solution, which I found to be:
$$ W_H = c_1 e^{6t} \left(\begin{matrix} 1 \\ 1 \end{matrix} \right) + c_2e^{2t} \begin{pmatrix} 1 \\ -1 \end{pmatrix}$$
Particular solution I am looking for is :
$$ W_P=\begin{pmatrix} e^{6t} & e^{2t} \\ e^{6t} & -e^{2t} \end{pmatrix} \begin{pmatrix} u_1 \\u_2 \end{pmatrix} $$
And we can find it with the following equation (u' would be the derivative of u):
$$ \begin{pmatrix} 6\\6 \end{pmatrix} =\begin{pmatrix} e^{6t} & e^{2t} \\ e^{6t} & -e^{2t} \end{pmatrix} \begin{pmatrix} u_1' \\u_2' \end{pmatrix} $$

This gives us the following equations:

$$ u_1' e^{6t} + u_2' e^{2t} =6 \\ u_1'e^{6t}-u_2'e^{2t}=6 \\ \Rightarrow u_1=-e^{-6t} \land u_2=0 $$

So my question is, when we integrate u2', would we consider the constant of integration... or not because we are finding the particular? Is my process correct? Thank you peeps

There is an easier way: suppose
A = \pmatrix{4 & 2 \\ 2 & 4}, \;\text{and} \; r = \pmatrix{6\\6}.
Your DE is ## W' = AW + r. ## If ##k## is the column-vector solution of ##Ak = r##, your DE reads as ##W' = A(W+k),## so the vector ##Z = W+k## satisfies ##Z' = AZ##, because ##k## is constant. So, ##W = Z-k##, where ##Z## is a solution of the homogeneous equation.
 
Equivalently- since the "non-homogeneous" part of the equation is the constant vector, \begin{pmatrix}6 \\ 6 \end{pmatrix}, the part of the solution due to that must be constant, say, \begin{pmatrix}A \\ B \end{pmatrix}. The derivative of a constant is 0 so we have the equation
\begin{pmatrix}4 & 2 \\ 2 & 4 \end{pmatrix}\begin{pmatrix}A\\ B\end{pmatrix}=\begin{pmatrix}4A+ 2B\\ 2A+ 4B \end{pmatrix}= \begin{pmatrix}6 \\ 6 \end{pmatrix}
so we have the two equation 4A+ 2B= 6 and 2A+ 4B= 6.
 
I think we now have the same hint three times. Also,
HallsofIvy said:
so we have the equation
mind the minus sign: To obtain a (constant) particular solution ##W_p##, solve
$$
\begin{bmatrix}
4& 2\\
2& 4
\end{bmatrix}
W_p
= \color{red}{-}
\begin{bmatrix}
6\\
6
\end{bmatrix}
$$
 
Thanks guys. It makes sense that the non-homogenous solution would have constant elements. Although I don't understand what you are saying krylov by minding the minus sign, when did it come in play?
 
dumbdumNotSmart said:
Although I don't understand what you are saying krylov by minding the minus sign, when did it come in play?
When you substitute an unknown constant vector ##W_p## into the inhomogeneous equation, indeed you end up with a linear system, but you have to be careful that there is a minus sign in from of ##(6,6)## in the right-hand side. That minus sign was accidentally missing in the post of @HallsofIvy .
 

Similar threads

  • · Replies 6 ·
Replies
6
Views
1K
  • · Replies 2 ·
Replies
2
Views
1K
Replies
7
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 12 ·
Replies
12
Views
3K
Replies
2
Views
1K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K