Solution of 2 x'' y + 3 x' y' + x y'' = 0 where ' is d/dt

  • Thread starter Thread starter Dukon
  • Start date Start date
Click For Summary
SUMMARY

The discussion centers on solving the second-order differential equation 2 \ddot{x} y + 3 \dot{x} \dot{y} + x \ddot{y} = 0, where \dot{x} and \ddot{x} denote the first and second derivatives of x with respect to time t. Participants suggest using exponential functions, such as x(t) = e^{rt} and y(t) = e^{st}, to derive solutions. The conversation reveals that the general solution can be expressed in terms of arbitrary functions of t, allowing for multiple families of solutions. The significance of defining differential operators is also highlighted, leading to a structured approach for generating solutions.

PREREQUISITES
  • Understanding of second-order differential equations
  • Familiarity with exponential functions and their derivatives
  • Knowledge of differential operators and their applications
  • Basic concepts of solution families in differential equations
NEXT STEPS
  • Study the method of undetermined coefficients for solving differential equations
  • Explore the existence and uniqueness theorems for differential equations
  • Learn about the application of differential operators in solving PDEs
  • Investigate the use of Laplace transforms in solving linear differential equations
USEFUL FOR

Mathematicians, physics students, and engineers who are working with differential equations and seeking to understand solution methods for complex systems involving multiple variables.

Dukon
Messages
76
Reaction score
3

Homework Statement


Given \dot{x} \equiv { \mathrm{d}x \over \mathrm{d}t } and \ddot{x} is { \mathrm{d^2}x \over \mathrm{d}t^2 }

what is solution for x(t) and y(t) which satsifies

2 \ddot{x} y + 3 \dot{x} \dot{y} + x \ddot{y} = 0

Homework Equations



2 \ddot{x} y + 3 \dot{x} \dot{y} + x \ddot{y} = 0

The Attempt at a Solution



clearly, guesses could be made for x(t) and y(t) but is there a most general solution which somehow includes all possible solutions?
 
Last edited:
Physics news on Phys.org
Doug Brown said:
(can the construction be used in the post titles also or only in the body?)
<br /> <br /> Don&#039;t put equations in the titles in the first place. It violates forum rules.
 
Doug Brown said:

Homework Statement


Given \dot{x} \equiv { \mathrm{d}x \over \mathrm{d}t } and \ddot{x} is { \mathrm{d^2}x \over \mathrm{d}t^2 }

what is solution for x(t) and y(t) which satsifies

2 \ddot{x} y + 3 \dot{x} \dot{y} + x \ddot{y} = 0

Homework Equations



2 \ddot{x} y + 3 \dot{x} \dot{y} + x \ddot{y} = 0

The Attempt at a Solution



clearly, guesses could be made for x(t) and y(t) but is there a most general solution which somehow includes all possible solutions?
Let ##x = e^{rt}## and let ##y = e^{st}##.
See where that gets you.
 
I know but I said that already in "3. The Attempt at a Solution "
e^{rt} is just a guess
I am looking for a more general more formal solution method
 
Doug Brown said:
I know but I said that already in "3. The Attempt at a Solution "
e^{rt} is just a guess
I am looking for a more general more formal solution method
This is more of an "educated guess" than just a guess. This is also a standard (and formal) technique that is used in solving differential equations.
 
Doug Brown said:
I know but I said that already in "3. The Attempt at a Solution "
e^{rt} is just a guess
I am looking for a more general more formal solution method

It's kind of an odd problem with a second order DE and two unknown functions with no second equation nor boundary conditions. Not sure what to expect, but Mark's suggestion leads to two solutions of the form $$
(x(t),y(t)) = C(e^{rt},e^{-2rt})\text{ and } D(e^{rt},e^{-rt})$$each with a free parameter ##r## and arbitrary constants. Of course, your question involves whether or not that is all there are. That question is usually answered by existence and uniqueness theorems. But this is a nonlinear setting so all bets are off. Whether there are such theorems for this kind of setting, I don't know.
 
Doug Brown said:
is there a most general solution which somehow includes all possible solutions?
It's too easy to generate whole families of solutions. E.g. set x=tm, y=tn (not even bothering with constant multiples) gives a solution whenever neither n nor m is zero and n is either -2m or 1-m.
 
Doug Brown said:

Homework Statement


Given \dot{x} \equiv { \mathrm{d}x \over \mathrm{d}t } and \ddot{x} is { \mathrm{d^2}x \over \mathrm{d}t^2 }

what is solution for x(t) and y(t) which satsifies

2 \ddot{x} y + 3 \dot{x} \dot{y} + x \ddot{y} = 0

Homework Equations



2 \ddot{x} y + 3 \dot{x} \dot{y} + x \ddot{y} = 0

The Attempt at a Solution



clearly, guesses could be made for x(t) and y(t) but is there a most general solution which somehow includes all possible solutions?

Let x(t) be arbitrary. You are then left with a second-order linear ODE for y(t) with singular points wherever x(t) = 0.

EDIT: You have <br /> 2\ddot x y + 3 \dot x \dot y + x \ddot y = (\ddot x y + 2 \dot x \dot y + x \ddot y) + (\ddot x y + \dot x \dot y)<br /> = \frac{d^2}{dt^2}(xy) + \frac{d}{dt}(\dot x y) = 0 so you can integrate once immediately.
 
Last edited:
pasmith said:
Let x(t) be arbitrary. You are then left with a second-order linear ODE for y(t) with singular points wherever x(t) = 0.

EDIT: You have <br /> 2\ddot x y + 3 \dot x \dot y + x \ddot y = (\ddot x y + 2 \dot x \dot y + x \ddot y) + (\ddot x y + \dot x \dot y)<br /> = \frac{d^2}{dt^2}(xy) + \frac{d}{dt}(\dot x y) = 0 so you can integrate once immediately.
taking that a bit further, we can set x to be any function of t and obtain ##y=\frac c{x^2}\int x.dt##
 
  • #10
Hi @Doug Brown:

I am not sure if this idea would be of general use, but I seem to remember learning about this technique as an undergraduate many decades ago.

Define two differential operators as follows:
Dx = (d/dt)(∂/∂y)
Dy = (d/dt)(∂/∂x)​
Then the equation can be written as:
[ 3 Dx2 + 2 Dx Dy +Dy2 ] xy = 0​
This can be factored as follows:
[ [ Dx + Dy ] × [ 2 Dx + Dy ] ] xy = 0​
This produces two equations:
[ Dx + Dy ] xy = 0
and
[ 2 Dx + Dy ] xy = 0​
I don't have a way of using a dot to indicate differentiation WRT t, so I will use an apostrophe instead.
These equations can be written as:
(1) x'y + xy' = 0
(2) 2x'y + xy' = 0
I have not checked this out, but I think that if a pair P1{x(t),y(t)} satisfies (1), and P[SUB2[/SUB]{x(t),y(t)} satisfies (2), then one general solution (of possibly many) of the original equation would be
A × P1{x(t),y(t)} + B × P2{x(t),y(t)}​
with A and B arbitrary constants.

Regards,
Buzz
 
Last edited:
  • #11
Buzz Bloom said:
Hi @Doug Brown:

I am not sure if this idea would be of general use, but I seem to remember learning about this technique as an undergraduate many decades ago.

Define two differential operators as follows:
Dx = (d/dt)(∂/∂y)
Dy = (d/dt)(∂/∂x)
(Above) Is this really what you meant? Usually Dx is a way of writing the operator ##\frac{d}{dx}## and similarly for Dy
Buzz Bloom said:
Then the equation can be written as:
[ 3 Dx2 + 2 Dx Dy +Dy2 ] xy = 0​
This can be factored as follows:
[ [ Dx + Dy ] × [ 2 Dx + Dy ] ] xy = 0​
This produces two equations:
[ Dx + Dy ] xy = 0
and
[ 2 Dx + Dy ] xy = 0
This is what I did using the hint I gave back in post #3.
Buzz Bloom said:
I don't have a way of using a dot to indicate differentiation WRT t, so I will use an apostrophe instead.
These equations can be written as:
(1) x'y + xy' = 0
(2) 2x'y + xy' = 0
I have not checked this out, but I think that if a pair P1{x(t),y(t)} satisfies (1), and P[SUB2[/SUB]{x(t),y(t)} satisfies (2), then one general solution (of possibly many) of the original equation would be
A × P1{x(t),y(t)} + B × P2{x(t),y(t)}​
with A and B arbitrary constants.

Regards,
Buzz
 
  • #12
Mark44 said:
(Above) Is this really what you meant? Usually Dx is a way of writing the operator ddx\frac{d}{dx} and similarly for Dy
Hi Mark:

I am familiar with Dx being an alternative notation for d/dx. I don't remember what the notation was to represent (d/dt)(∂/∂y) when I learned differential equations back in the 1950s, so I borrowed the Dx notation for that.

Mark44 said:
This is what I did using the hint I gave back in post #3.
What I found was that (1) yields y = -1/x, and (2) y = -1/x2. One solution for (1) is x = tα, y = t. This solution seems to be valid for any value of α. Similarly for (2) x = tα, y = t-2α. I have not checked out combinations.

Regards,
Buzz
 
  • #13
Buzz Bloom said:
Hi Mark:

I am familiar with Dx being an alternative notation for d/dx. I don't remember what the notation was to represent (d/dt)(∂/∂y) when I learned differential equations back in the 1950s, so I borrowed the Dx notation for that.What I found was that (1) yields y = -1/x, and (2) y = -1/x2. One solution for (1) is x = tα, y = t. This solution seems to be valid for any value of α. Similarly for (2) x = tα, y = t-2α. I have not checked out combinations.

Regards,
Buzz
Seems to me nobody has grasped the significance of my post #8. It shows how you can get all possible solutions by plugging in any integrable function for x(t) that you like, then determining y(t). What more is there to say?
 
  • Like
Likes   Reactions: Buzz Bloom
  • #14
Another aspect of the approach I suggested is that it allows one to directly see the possible relationships between the variables x and y in a form independent of the parameter t.

Regards,
Buzz
 

Similar threads

Replies
5
Views
2K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
4
Views
2K
Replies
2
Views
1K
  • · Replies 105 ·
4
Replies
105
Views
7K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 2 ·
Replies
2
Views
965
Replies
7
Views
2K
Replies
8
Views
2K