Second order linear ode with variable coefficient and imaginary roots
up vote
0
down vote
favorite
Given the ode:$$t^2y''+ty'+y=0$$
The solution should be of the form $$y=t^r$$
So:
$t^2(t^r)''+t(t^r)'+t^r=0$
$$...$$
$t^r(r^2+1)=0$
$r_1=i$ and $r_2=-i$
$y_1=c_1e^{it}$ and $y_2=c_2e^{-it}$
Using Eulers Formula we get
$y_1=c_1(cost+isint)$ and $y_2=c_2(cost-isint)$
$y(t)=y_1(t)+y_2(t)$
$y(t)=c_1(cost+isint)+c_2(cost-isint)$
$y(t)=cost(c_1+c_2)+isint(c_1-c_2)$
Is this correct? If not where am I mistaken?
differential-equations
add a comment |
up vote
0
down vote
favorite
Given the ode:$$t^2y''+ty'+y=0$$
The solution should be of the form $$y=t^r$$
So:
$t^2(t^r)''+t(t^r)'+t^r=0$
$$...$$
$t^r(r^2+1)=0$
$r_1=i$ and $r_2=-i$
$y_1=c_1e^{it}$ and $y_2=c_2e^{-it}$
Using Eulers Formula we get
$y_1=c_1(cost+isint)$ and $y_2=c_2(cost-isint)$
$y(t)=y_1(t)+y_2(t)$
$y(t)=c_1(cost+isint)+c_2(cost-isint)$
$y(t)=cost(c_1+c_2)+isint(c_1-c_2)$
Is this correct? If not where am I mistaken?
differential-equations
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Given the ode:$$t^2y''+ty'+y=0$$
The solution should be of the form $$y=t^r$$
So:
$t^2(t^r)''+t(t^r)'+t^r=0$
$$...$$
$t^r(r^2+1)=0$
$r_1=i$ and $r_2=-i$
$y_1=c_1e^{it}$ and $y_2=c_2e^{-it}$
Using Eulers Formula we get
$y_1=c_1(cost+isint)$ and $y_2=c_2(cost-isint)$
$y(t)=y_1(t)+y_2(t)$
$y(t)=c_1(cost+isint)+c_2(cost-isint)$
$y(t)=cost(c_1+c_2)+isint(c_1-c_2)$
Is this correct? If not where am I mistaken?
differential-equations
Given the ode:$$t^2y''+ty'+y=0$$
The solution should be of the form $$y=t^r$$
So:
$t^2(t^r)''+t(t^r)'+t^r=0$
$$...$$
$t^r(r^2+1)=0$
$r_1=i$ and $r_2=-i$
$y_1=c_1e^{it}$ and $y_2=c_2e^{-it}$
Using Eulers Formula we get
$y_1=c_1(cost+isint)$ and $y_2=c_2(cost-isint)$
$y(t)=y_1(t)+y_2(t)$
$y(t)=c_1(cost+isint)+c_2(cost-isint)$
$y(t)=cost(c_1+c_2)+isint(c_1-c_2)$
Is this correct? If not where am I mistaken?
differential-equations
differential-equations
asked Dec 1 at 2:59
VakiPitsi
1637
1637
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
You started off assuming that the solution has the form $t^r$ for some $r$ and correctly obtained $r=pm i$.
But then you wrote $y_1=c_1e^{it}$ instead of $y_1=c_1t^i$, plugging back into the wrong form.
Instead, go on with $$t^i=left(e^{ln(t)}right)^i=e^{iln(t)}=cos(ln(t))+isin(ln(t))$$
and you should be able to finish the problem.
Ohh I see thanks a lot!
– VakiPitsi
Dec 1 at 3:34
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
You started off assuming that the solution has the form $t^r$ for some $r$ and correctly obtained $r=pm i$.
But then you wrote $y_1=c_1e^{it}$ instead of $y_1=c_1t^i$, plugging back into the wrong form.
Instead, go on with $$t^i=left(e^{ln(t)}right)^i=e^{iln(t)}=cos(ln(t))+isin(ln(t))$$
and you should be able to finish the problem.
Ohh I see thanks a lot!
– VakiPitsi
Dec 1 at 3:34
add a comment |
up vote
2
down vote
accepted
You started off assuming that the solution has the form $t^r$ for some $r$ and correctly obtained $r=pm i$.
But then you wrote $y_1=c_1e^{it}$ instead of $y_1=c_1t^i$, plugging back into the wrong form.
Instead, go on with $$t^i=left(e^{ln(t)}right)^i=e^{iln(t)}=cos(ln(t))+isin(ln(t))$$
and you should be able to finish the problem.
Ohh I see thanks a lot!
– VakiPitsi
Dec 1 at 3:34
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
You started off assuming that the solution has the form $t^r$ for some $r$ and correctly obtained $r=pm i$.
But then you wrote $y_1=c_1e^{it}$ instead of $y_1=c_1t^i$, plugging back into the wrong form.
Instead, go on with $$t^i=left(e^{ln(t)}right)^i=e^{iln(t)}=cos(ln(t))+isin(ln(t))$$
and you should be able to finish the problem.
You started off assuming that the solution has the form $t^r$ for some $r$ and correctly obtained $r=pm i$.
But then you wrote $y_1=c_1e^{it}$ instead of $y_1=c_1t^i$, plugging back into the wrong form.
Instead, go on with $$t^i=left(e^{ln(t)}right)^i=e^{iln(t)}=cos(ln(t))+isin(ln(t))$$
and you should be able to finish the problem.
answered Dec 1 at 3:24
obscurans
52117
52117
Ohh I see thanks a lot!
– VakiPitsi
Dec 1 at 3:34
add a comment |
Ohh I see thanks a lot!
– VakiPitsi
Dec 1 at 3:34
Ohh I see thanks a lot!
– VakiPitsi
Dec 1 at 3:34
Ohh I see thanks a lot!
– VakiPitsi
Dec 1 at 3:34
add a comment |
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%2f3020930%2fsecond-order-linear-ode-with-variable-coefficient-and-imaginary-roots%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