Solving second order coupled differential equation

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
Ravi Mohan
Messages
195
Reaction score
21
How do we solve a system of coupled differential equations written below?
[tex] -\frac{d^2}{dr^2}\left(<br /> \begin{array}{c}<br /> \phi_{l,bg}(r) \\<br /> \phi_{l,c}(r) \\<br /> \end{array} \right)+ \left(<br /> \begin{array}{cc}<br /> f(r) & \alpha_1 \\<br /> \alpha_2 & g(r)\\ <br /> \end{array} \right).\left(<br /> \begin{array}{c}<br /> \phi_{l,bg}(r) \\<br /> \phi_{l,c}(r) \\<br /> \end{array} \right) = E\left(<br /> \begin{array}{c}<br /> \phi_{l,bg}(r) \\<br /> \phi_{l,c}(r) \\<br /> \end{array} \right) [/tex]

Here [itex]f(r)[/itex] and [itex]g(r)[/itex] are quadratic functions of [itex]r[/itex]. [itex]\alpha_1,\alpha_2\text{ and }E[/itex] are constants.
 
Physics news on Phys.org
Ravi Mohan said:
How do we solve a system of coupled differential equations written below?
[tex] -\frac{d^2}{dr^2}\left(<br /> \begin{array}{c}<br /> \phi_{l,bg}(r) \\<br /> \phi_{l,c}(r) \\<br /> \end{array} \right)+ \left(<br /> \begin{array}{cc}<br /> f(r) & \alpha_1 \\<br /> \alpha_2 & g(r)\\ <br /> \end{array} \right).\left(<br /> \begin{array}{c}<br /> \phi_{l,bg}(r) \\<br /> \phi_{l,c}(r) \\<br /> \end{array} \right) = E\left(<br /> \begin{array}{c}<br /> \phi_{l,bg}(r) \\<br /> \phi_{l,c}(r) \\<br /> \end{array} \right) [/tex]

Here [itex]f(r)[/itex] and [itex]g(r)[/itex] are quadratic functions of [itex]r[/itex]. [itex]\alpha_1,\alpha_2\text{ and }E[/itex] are constants.

Your system can be reduced to the first order system
[tex] y' = A(r)y[/tex]
where
[tex] y = \begin{pmatrix} \phi_{l,bg} \\ \phi_{l,c} \\ \phi_{l,bg}' \\ \phi_{l,c}' \end{pmatrix}[/tex]
and
[tex] A(r) = \begin{pmatrix} 0 & 0 & 1 & 0 \\ 0 & 0 & 0 & 1 \\ E - f(r) & -\alpha_1 & 0 & 0\\<br /> -\alpha_2 & E - g(r) & 0 & 0\end{pmatrix}[/tex]
which has a solution in terms of a Magnus series.
 
  • Like
Likes   Reactions: 1 person
Thank you for the help.