Stability of non-homogeneous ODE

Multi tool use
I try to examine stability of non-homogeneous ODE system:
begin{cases} Dy_{1} = y_{1}+2y_{2} +frac{3}{x^4} \ Dy_{2}= 3y_{1}+4y_{2}+ frac{3}{x^4} end{cases}
I tried to find solutions of such system and then examine whether solutions are stable, but I can't find them, is there any other method to determine stability of such system?
differential-equations stability-theory
New contributor
Cga1235 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I try to examine stability of non-homogeneous ODE system:
begin{cases} Dy_{1} = y_{1}+2y_{2} +frac{3}{x^4} \ Dy_{2}= 3y_{1}+4y_{2}+ frac{3}{x^4} end{cases}
I tried to find solutions of such system and then examine whether solutions are stable, but I can't find them, is there any other method to determine stability of such system?
differential-equations stability-theory
New contributor
Cga1235 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Can you show us a screenshot or picture of what you tried? That would really help us help you better. Also, personally, this looks like a problem for variation of parameters. Did you try that?
– Noble Mushtak
2 days ago
add a comment |
I try to examine stability of non-homogeneous ODE system:
begin{cases} Dy_{1} = y_{1}+2y_{2} +frac{3}{x^4} \ Dy_{2}= 3y_{1}+4y_{2}+ frac{3}{x^4} end{cases}
I tried to find solutions of such system and then examine whether solutions are stable, but I can't find them, is there any other method to determine stability of such system?
differential-equations stability-theory
New contributor
Cga1235 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I try to examine stability of non-homogeneous ODE system:
begin{cases} Dy_{1} = y_{1}+2y_{2} +frac{3}{x^4} \ Dy_{2}= 3y_{1}+4y_{2}+ frac{3}{x^4} end{cases}
I tried to find solutions of such system and then examine whether solutions are stable, but I can't find them, is there any other method to determine stability of such system?
differential-equations stability-theory
differential-equations stability-theory
New contributor
Cga1235 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Cga1235 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Cga1235 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 2 days ago
Cga1235Cga1235
31
31
New contributor
Cga1235 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Cga1235 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Cga1235 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Can you show us a screenshot or picture of what you tried? That would really help us help you better. Also, personally, this looks like a problem for variation of parameters. Did you try that?
– Noble Mushtak
2 days ago
add a comment |
Can you show us a screenshot or picture of what you tried? That would really help us help you better. Also, personally, this looks like a problem for variation of parameters. Did you try that?
– Noble Mushtak
2 days ago
Can you show us a screenshot or picture of what you tried? That would really help us help you better. Also, personally, this looks like a problem for variation of parameters. Did you try that?
– Noble Mushtak
2 days ago
Can you show us a screenshot or picture of what you tried? That would really help us help you better. Also, personally, this looks like a problem for variation of parameters. Did you try that?
– Noble Mushtak
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
First, solve the homogeneous equation:
$$Dy_1=y_1+2y_2$$
$$Dy_2=3y_1+4y_2$$
I am assuming you already know how to do this, so I will just write the solution here:
$$left[begin{matrix} y_1 \ y_2end{matrix}right]=left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} c_1 \ c_2end{matrix}right] text{ where } c_1,c_2inmathbb{R}$$
Since there is one negative eigenvalue $frac{5-sqrt{33}}{2}$ and one positive eigenvalue $frac{5+sqrt{33}}{2}$, the origin is a saddle point and the system is unstable. Therefore, at the very least, you now know the stability of the ODE system.
Now, to actually solve the non-homogeneous equation, use variation of parameters by changing $c_1,c_2$ to $u_1(t),u_2(t)$:
$$left[begin{matrix} y_1 \ y_2end{matrix}right]=left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} u_1(t) \ u_2(t)end{matrix}right]$$
$$left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} u_1'(t) \ u_2'(t)end{matrix}right]=left[begin{matrix} frac{3}{x^4} \ frac{3}{x^4}end{matrix}right]$$
Here, you can use the second equation to solve for $u_1'(t),u_2'(t)$, integrate to solve for $u_1(t),u_2(t)$, and then plug into the first equation to solve for $y_1,y_2$. Good luck!
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Cga1235 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3062877%2fstability-of-non-homogeneous-ode%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
First, solve the homogeneous equation:
$$Dy_1=y_1+2y_2$$
$$Dy_2=3y_1+4y_2$$
I am assuming you already know how to do this, so I will just write the solution here:
$$left[begin{matrix} y_1 \ y_2end{matrix}right]=left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} c_1 \ c_2end{matrix}right] text{ where } c_1,c_2inmathbb{R}$$
Since there is one negative eigenvalue $frac{5-sqrt{33}}{2}$ and one positive eigenvalue $frac{5+sqrt{33}}{2}$, the origin is a saddle point and the system is unstable. Therefore, at the very least, you now know the stability of the ODE system.
Now, to actually solve the non-homogeneous equation, use variation of parameters by changing $c_1,c_2$ to $u_1(t),u_2(t)$:
$$left[begin{matrix} y_1 \ y_2end{matrix}right]=left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} u_1(t) \ u_2(t)end{matrix}right]$$
$$left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} u_1'(t) \ u_2'(t)end{matrix}right]=left[begin{matrix} frac{3}{x^4} \ frac{3}{x^4}end{matrix}right]$$
Here, you can use the second equation to solve for $u_1'(t),u_2'(t)$, integrate to solve for $u_1(t),u_2(t)$, and then plug into the first equation to solve for $y_1,y_2$. Good luck!
add a comment |
First, solve the homogeneous equation:
$$Dy_1=y_1+2y_2$$
$$Dy_2=3y_1+4y_2$$
I am assuming you already know how to do this, so I will just write the solution here:
$$left[begin{matrix} y_1 \ y_2end{matrix}right]=left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} c_1 \ c_2end{matrix}right] text{ where } c_1,c_2inmathbb{R}$$
Since there is one negative eigenvalue $frac{5-sqrt{33}}{2}$ and one positive eigenvalue $frac{5+sqrt{33}}{2}$, the origin is a saddle point and the system is unstable. Therefore, at the very least, you now know the stability of the ODE system.
Now, to actually solve the non-homogeneous equation, use variation of parameters by changing $c_1,c_2$ to $u_1(t),u_2(t)$:
$$left[begin{matrix} y_1 \ y_2end{matrix}right]=left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} u_1(t) \ u_2(t)end{matrix}right]$$
$$left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} u_1'(t) \ u_2'(t)end{matrix}right]=left[begin{matrix} frac{3}{x^4} \ frac{3}{x^4}end{matrix}right]$$
Here, you can use the second equation to solve for $u_1'(t),u_2'(t)$, integrate to solve for $u_1(t),u_2(t)$, and then plug into the first equation to solve for $y_1,y_2$. Good luck!
add a comment |
First, solve the homogeneous equation:
$$Dy_1=y_1+2y_2$$
$$Dy_2=3y_1+4y_2$$
I am assuming you already know how to do this, so I will just write the solution here:
$$left[begin{matrix} y_1 \ y_2end{matrix}right]=left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} c_1 \ c_2end{matrix}right] text{ where } c_1,c_2inmathbb{R}$$
Since there is one negative eigenvalue $frac{5-sqrt{33}}{2}$ and one positive eigenvalue $frac{5+sqrt{33}}{2}$, the origin is a saddle point and the system is unstable. Therefore, at the very least, you now know the stability of the ODE system.
Now, to actually solve the non-homogeneous equation, use variation of parameters by changing $c_1,c_2$ to $u_1(t),u_2(t)$:
$$left[begin{matrix} y_1 \ y_2end{matrix}right]=left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} u_1(t) \ u_2(t)end{matrix}right]$$
$$left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} u_1'(t) \ u_2'(t)end{matrix}right]=left[begin{matrix} frac{3}{x^4} \ frac{3}{x^4}end{matrix}right]$$
Here, you can use the second equation to solve for $u_1'(t),u_2'(t)$, integrate to solve for $u_1(t),u_2(t)$, and then plug into the first equation to solve for $y_1,y_2$. Good luck!
First, solve the homogeneous equation:
$$Dy_1=y_1+2y_2$$
$$Dy_2=3y_1+4y_2$$
I am assuming you already know how to do this, so I will just write the solution here:
$$left[begin{matrix} y_1 \ y_2end{matrix}right]=left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} c_1 \ c_2end{matrix}right] text{ where } c_1,c_2inmathbb{R}$$
Since there is one negative eigenvalue $frac{5-sqrt{33}}{2}$ and one positive eigenvalue $frac{5+sqrt{33}}{2}$, the origin is a saddle point and the system is unstable. Therefore, at the very least, you now know the stability of the ODE system.
Now, to actually solve the non-homogeneous equation, use variation of parameters by changing $c_1,c_2$ to $u_1(t),u_2(t)$:
$$left[begin{matrix} y_1 \ y_2end{matrix}right]=left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} u_1(t) \ u_2(t)end{matrix}right]$$
$$left[begin{matrix} frac{1}{6}(-3-sqrt{33})e^{(5-sqrt{33})/2} & frac{1}{6}(-3+sqrt{33})e^{(5+sqrt{33})/2} \ e^{(5-sqrt{33})/2} & e^{(5+sqrt{33})/2}end{matrix}right]left[begin{matrix} u_1'(t) \ u_2'(t)end{matrix}right]=left[begin{matrix} frac{3}{x^4} \ frac{3}{x^4}end{matrix}right]$$
Here, you can use the second equation to solve for $u_1'(t),u_2'(t)$, integrate to solve for $u_1(t),u_2(t)$, and then plug into the first equation to solve for $y_1,y_2$. Good luck!
answered 2 days ago


Noble MushtakNoble Mushtak
15.2k1735
15.2k1735
add a comment |
add a comment |
Cga1235 is a new contributor. Be nice, and check out our Code of Conduct.
Cga1235 is a new contributor. Be nice, and check out our Code of Conduct.
Cga1235 is a new contributor. Be nice, and check out our Code of Conduct.
Cga1235 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3062877%2fstability-of-non-homogeneous-ode%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
8N8i0zv E,jZPA0K7cTKMENdJtsfAOC,dshx3ioCwJ,RvqVBdle8g2LLu0i5OnC8 wcg4mGM6oqGD,XCj,rk wKHR1wD516abyE,ESV9Xa
Can you show us a screenshot or picture of what you tried? That would really help us help you better. Also, personally, this looks like a problem for variation of parameters. Did you try that?
– Noble Mushtak
2 days ago