System of Differential Equations

Click For Summary

Homework Help Overview

The discussion revolves around a system of differential equations involving two variables, x and y, with the equations presented in terms of their derivatives. Participants are exploring methods to manipulate the equations to isolate one variable in order to solve the system.

Discussion Character

  • Mixed

Approaches and Questions Raised

  • Participants are attempting to rewrite the equations using differential operators and are discussing the implications of eliminating one variable. There are suggestions to guess solutions based on the form of the equations, and some participants express uncertainty about how to proceed with integration and substitution.

Discussion Status

There is an ongoing exploration of different methods to approach the problem, including the use of differential operators and integration techniques. Some participants have shared hints and partial solutions, while others are still seeking clarity on how to effectively isolate variables.

Contextual Notes

Participants are grappling with the nature of differential equations and the need to manipulate them without fully solving for one variable in terms of another. There is an acknowledgment of the complexity involved in the system and the need for careful consideration of the relationships between x and y.

Saladsamurai
Messages
3,009
Reaction score
7

Homework Statement



[tex]\frac{dx}{dt} +\frac{dy}{dt} + y - x = e^{2t}[/tex]
[tex]\frac{d^2x}{dt^2} +\frac{dy}{dt} = 3e^{2t}[/tex]


I am a little stumped on this one. I tried writing it using D as the differential operator d/dt:

D(x+y) +x - y = e2t
D2x+Dy = 3e2t

but that doesn't do anything but change the variables to something else... if I subtract the 1st EQ from second I get

[tex]\frac{d^2x}{dt^2}-\frac{dx}{dt} -y +x = 2e^{2t}[/tex]

But I still have x AND y in here.

Any hints on this?
 
Physics news on Phys.org
It seems to me that both x and y will have to involve e2t.
 
Hi Mark44 :smile: I am not sure if you are giving me a hint or just making a comment. I am sure that they both will, but I am trying to eliminate all 'x' or all 'y' from one equation so that I can solve for it. Just like with a system of regular equations (i.e. not DEs).

Just not sure how to approach it.
 
I'm giving you a hint. I was able to find solutions for x and y by "guessing" that each was some multiple of e2t. The solutions I found worked, but it's possible that I didn't get the complete solution.

Alternatively, and more in line with what you're trying, you could solve for y' in the second equation, integrate to get y, and then substitute for y and y' in the first equation. Then you would have a single 2nd order, linear equation in one dependent variable.
 
One approach is to treat the system in terms of the differential operators and then just use simple elimination keeping in mind the terms are operators. So writing it as:

[tex] \begin{aligned}<br /> (D-1)x&+(D+1)y&=e^{2t}\\<br /> D^2 x&+Dy&=3e^{2t}<br /> \end{aligned}[/tex]

Now, to solve for y, I can operate on the first with the D^2 operator and on the second with the (D-1) operator:

[tex] \begin{aligned}<br /> D(D-1)x&+D(D+1)y&=De^{2x} \\<br /> D^2(D+1)x&+D(D+1)y&=(D+1)3e^{2x}<br /> \end{aligned}[/tex]

Notice now I can subtract the second from the first and obtain:

[tex]D(D-1)x-D^2(D+1)x=De^{2x}-(D+1)3e^{2x}[/tex]

[tex](D^2-D-D^3-D^2)x=2e^{2x}-(6e^2x}+3e^{2x})[/tex]

[tex](D^3+D)x=e^{2t}[/tex]

Solve that with the set of [itex](a_1,a_2,a_3)[/itex] arbitrary constants. Do the same for y with [itex](b_1,b_2)[/itex], back-substitute into the DE, equate coefficients to determine the relationship between the a and b coefficients.

See "Differential Equations" by Rainville and Bedient
 
Mark44 said:
I'm giving you a hint. I was able to find solutions for x and y by "guessing" that each was some multiple of e2t. The solutions I found worked, but it's possible that I didn't get the complete solution.

Alternatively, and more in line with what you're trying, you could solve for y' in the second equation, integrate to get y, and then substitute for y and y' in the first equation. Then you would have a single 2nd order, linear equation in one dependent variable.

Hi again Mark44 :smile: I still don't see it. The second equation is

x'' + y' = 3e2t or y' = 3e2t - x''

I don't see how I can "integrate to obtain y." y' is in terms of 't' and 'x.'

jackmell said:
One approach is to treat the system in terms of the differential operators and then just use simple elimination keeping in mind the terms are operators. So writing it as:

[tex] \begin{aligned}<br /> (D-1)x&+(D+1)y&=e^{2t}\\<br /> D^2 x&+Dy&=3e^{2t}<br /> \end{aligned}[/tex]

Now, to solve for y, I can operate on the first with the D^2 operator and on the second with the (D-1) operator:

[tex] \begin{aligned}<br /> D(D-1)x&+D(D+1)y&=De^{2x} \\<br /> D^2(D+1)x&+D(D+1)y&=(D+1)3e^{2x}<br /> \end{aligned}[/tex]

Notice now I can subtract the second from the first and obtain:

[tex]D(D-1)x-D^2(D+1)x=De^{2x}-(D+1)3e^{2x}[/tex]

[tex](D^2-D-D^3-D^2)x=2e^{2x}-(6e^2x}+3e^{2x})[/tex]

[tex](D^3+D)x=e^{2t}[/tex]

Solve that with the set of [itex](a_1,a_2,a_3)[/itex] arbitrary constants. Do the same for y with [itex](b_1,b_2)[/itex], back-substitute into the DE, equate coefficients to determine the relationship between the a and b coefficients.

See "Differential Equations" by Rainville and Bedient

As I recall, some refer to this as the annihilator method right? This was the approach I was going for, but I just did not have the proper foresight.
 
Saladsamurai said:
Hi again Mark44 :smile: I still don't see it. The second equation is

x'' + y' = 3e2t or y' = 3e2t - x''

I don't see how I can "integrate to obtain y." y' is in terms of 't' and 'x.'

This equation can be directly integrated to

y = (3/2) e2t - x' + c
 
fzero said:
This equation can be directly integrated to

y = (3/2) e2t - x' + c

OH! I still have to wrap my head around the fact that these are differential equations. As such, I did not have to 'solve' the second equation completely for y interms of t. I see now that x' in the above can be directly substituted into the 1st equation leaving only x in terms of t.

Thanks guys for your patience. :smile:

Casey
 
fzero said:
This equation can be directly integrated to

y = (3/2) e2t - x' + c

Nicer way. Thank you. I didn't know that either. :)
 

Similar threads

  • · Replies 8 ·
Replies
8
Views
2K
Replies
3
Views
2K
  • · Replies 20 ·
Replies
20
Views
2K
Replies
4
Views
2K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 9 ·
Replies
9
Views
2K
Replies
12
Views
2K
Replies
5
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K