Quantcast How would I solve a DiffEq of the form... Text - Physics Forums Library

PDA

View Full Version : How would I solve a DiffEq of the form...


K.J.Healey
Jul24-08, 09:56 AM
\frac{dn(t)}{dt} = A sin(B*n(t)*t) n(t)


Or a more general

\frac{dn(t)}{dt} = F(n(t)) n(t)


I'm not even sure what method I could use, or what it would be called.

A first order, non-linear equation?

Maybe it looks neater as:

\frac{dn}{dt}=A n Sin(n t)



EDIT : This isn't homework. I'm just looking for insight.

HallsofIvy
Jul24-08, 10:43 AM
That is extremely non-linear because the dependent function, u(t), occurs inside the non-linear function cosine. The fact that you then have that function multiplied by u(t) just makes it worse.

There are no general methods to solve non-linear equations or even any special classes of non-linear equations. (You can sometimes use "quadrature" for equations where the independent variable does not appear explicitly but they typically result in an integration that cannot be done in closed form.)

Marin
Jul24-08, 10:50 AM
Hi, K.J.Healey!

Where did you get this equation from? I mean, does it describe a certain physical system, or you 'invented' it by yourself?

K.J.Healey
Jul24-08, 11:10 AM
It comes from solving a large particle system decay rate due to (B=2) transition (oscillation) and subsequent annhilation. Its actually already a first term of an expansion on a much much more difficult equation. The potential splitting the energies of the particle-antiparticle is a function of the density of the system, which itself is a function of time.

That's where the amplitude's, as well as the frequency's, dependence one the density of states "n" comes into play. Usually the method is to take for small times "t" and just do an approx, or for t>>0 and do a sin^2 -> (1/2). But unfortunately I cannot. I have no explicit time-dependent extremes with which to expand about, so I need a complete solution.

K.J.Healey
Jul24-08, 11:13 AM
Perhaps I can do this numerically...

Defennder
Jul24-08, 11:22 AM
Does the * denote convolution? I was thinking either Fourier or Laplace transform, but I can't come up with the transform for the RHS.

K.J.Healey
Jul24-08, 01:24 PM
No, it was merely for a multiplication, because it looked really messy in tex (squshed everything together:

\frac{dn(t)}{dt} = A Sin(B n(t) t) n(t)


hard to read.

maze
Jul24-08, 03:31 PM
This DE is pretty intense

gamesguru
Jul25-08, 04:25 PM
It's not possible to solve, the reason is that inside the sine function there is the function n itself and the independent variable t. There is no way to seperate them and the only way to solve this is using taylor polynomials with an approximation. The first degree approximation is only valid if the product nt is very small and leads to,
\frac{dn}{dt}\approx ABn^2t.
Divide by n^2[/tex] and multiply by [itex]dt and then integrate and use algebra to get n=n(t).

Hope that helps, a little.