Solution for system of diff equations

  • Thread starter Thread starter Jhenrique
  • Start date Start date
  • Tags Tags
    System
Jhenrique
Messages
676
Reaction score
4
Given system like ##\begin{bmatrix}
x'(t)\\
y'(t)\\
\end{bmatrix}

=

\begin{bmatrix}
a & b \\
c & d \\
\end{bmatrix}

\begin{bmatrix}
x(t)\\
y(t)\\
\end{bmatrix}## can be rewritten as ##(-1)u''(t) + (bd)u'(t) + (ad+c)u(t) = 0## with ##\begin{bmatrix}
x(t)\\
y(t)\\
\end{bmatrix}

=

\begin{bmatrix}
u(t)\\
u'(t)\\
\end{bmatrix}##

In other words, if a diff equation of 2nd order can be disassembled in a system of 1nd order, thus a system of 1nd order can be assembled in a diff equation of 2nd order, correct? This way, I don't need to find the eigenvalues and eigenvectors...
 
Physics news on Phys.org
How do you guarantee that ##y(t)=u'(t)=x'(t)## will always work? I don't see why this would be so... they look independent to me in the first equation...
 
Yes, that is true. Dropping the matrix notation, if x'= ax+ by and y'= cx+ dy. then x''= ax'+ by'= ax'+ b(cx+ dy)= ax'+ bcx+ bdy. From the first equation, by= x'- ax so that
x''= ax'+ bcx+ d(x'- ax)= (a+ d)x'+ (bc- ad)x. We can always convert a system of n first order differential equations to a single nth order differential equation.
 
HallsofIvy said:
Yes, that is true. Dropping the matrix notation, if x'= ax+ by and y'= cx+ dy. then x''= ax'+ by'= ax'+ b(cx+ dy)= ax'+ bcx+ bdy. From the first equation, by= x'- ax so that
x''= ax'+ bcx+ d(x'- ax)= (a+ d)x'+ (bc- ad)x. We can always convert a system of n first order differential equations to a single nth order differential equation.

And this method isn't more simple than compute the eigenvalues and eigenvectors of a matrix?
 
Matterwave has seen the problem with the OP's idea.

You can convert the two equations into second order equations
x''= (a+d)x'+ (bc-ad)x
y''= (a+d)y'+ (bc-ad)y

But it doesn't follow that y = x'. You can choose two independent boundary conditions for each equation.

If it did follow that y = x', it would also follow that x = y', and that clearly means "something is wrong here".

In fact the OP's idea is used in reverse: to solve a single differential equation of order n, it is often easiest to convert it into a system of n first-order equations.
 
Thread 'Direction Fields and Isoclines'
I sketched the isoclines for $$ m=-1,0,1,2 $$. Since both $$ \frac{dy}{dx} $$ and $$ D_{y} \frac{dy}{dx} $$ are continuous on the square region R defined by $$ -4\leq x \leq 4, -4 \leq y \leq 4 $$ the existence and uniqueness theorem guarantees that if we pick a point in the interior that lies on an isocline there will be a unique differentiable function (solution) passing through that point. I understand that a solution exists but I unsure how to actually sketch it. For example, consider a...
Back
Top