"State of the Art" in nonlinear differential equations?

In summary, the conversation touches on the difficulty of solving nonlinear differential equations, the use of numerical methods and tools like Matlab, and the relevance of linear differential equations in understanding nonlinear ones. The conversation also mentions the phenomenon of rogue waves and their explanation using nonlinear quantum mechanics equations. The use of Runge-Kutta algorithms for numerical solutions is also discussed, including the first and fourth order methods and the concept of adaptive stepsize. Overall, the conversation highlights the complexity and importance of nonlinear differential equations in various fields of study.
  • #1
Mr. Moose
4
0
In my introductory ODE class we have focused mostly on linear differential equations. I know that nonlinear differential equations are much harder to solve, and I am wondering what exactly the "state of the art" methods are for dealing with them, or also what recent developments have been made in the field?
 
Physics news on Phys.org
  • #2
Many are dealt with using numerical methods as often there is no exact solution. A coomon tool is Matlab where you can setup a program to integrate the ODE.
 
  • #3
A a dabbler I can't answer about the present state of the art, but at least be assured that a lot of what you have learned on lde's still useful for nlde's. Particularly the part about the nature of the solutions, stability of the stationary point, whether attractive, repulsive. You just linearise about the s.p.'s - the new thing is there may be more than one of them. You can almost never get analytical solutions (but then you realize that even when you could the interest was really qualitative anyway) but it is far from the case that there is nothing mathematical between analytical solutions and blind numerical computation - there is a lot of math in it, and there are whole fields like chaos.
 
  • #4
One interesting area of non-linear is with ocean waves. There was a NOVA documentary about rogue waves which were thought to be figments of the imagination of captains at sea until one was measured on an oil rig at 75 ft when swells of the time were only half that height. Later it was discovered thru satellite that they may be more frequent than that and could be the cause of many missing ships over time.

The rogue wave was a non-linear phenomena where neighboring wave contributed energy to the rogue to make it bigger. Ships that were hit by it would fall into a deep trough and then the wave would literally crash on top of them. A cruise ship lost power due to one such wave that hit, took out windows and flooded key electrical systems.

http://www.pbs.org/wnet/savageseas/neptune-side-waves.html

http://channel.nationalgeographic.com/channel/alien-deep/videos/rogue-waves/

One scientist explained them using a non-linear quantum mechanics equation.
 
  • #5
jedishrfu said:
One interesting area of non-linear is with ocean waves. There was a NOVA documentary about rogue waves which were thought to be figments of the imagination of captains at sea until one was measured on an oil rig at 75 ft when swells of the time were only half that height. Later it was discovered thru satellite that they may be more frequent than that and could be the cause of many missing ships over time.

I recall a BBC Horizon documentary on that subject. In particular I recall some expert saying "This (points at straight line) is what the model used by the shipbuilding industry assumes, and this (points at set of points lying on a curve to which the previous line was tangent at some point) is the observed data". This was long before the program thought it worth mentioning the idea that "the linear model is inappropriate at large amplitudes".
 
  • #6
In general, most numerical methods fall into the category of runge-kutta algorithms.

The first order runge kutta method is also known as Newtons method, and it is the simplest of all.
if you have dx/dt=f(x,t)
and have initial conditions x0,t0
then f(x0,t0)*dt=dx (note that here dt isn't actually dt, but it is a very small number called the stepsize- you probably know it as h)
the above equation can be verified using the identity (dx/dt)*dt=dx (also dx is not an actual dx, but it is the increment of x with respect to the stepsize of t)
then x0+dx=x1
and t0+dt=t1
the idea is to perform this many times setting dt as small as possible and provided the approximation is suitable it will converge to the correct answer.

There are higher order methods, The most popular(it is used by programs like mathematica by default) is the runge kutta forth order method, which is given by:
dx1 = dt*f(x0,t0)
dx2=dt*f(x0+dx1/2,t0+dt/2)
dx3=dt*f(x0+dx2/2,t0+dt/2)
dx4=dt*f(x0+dx3,t0+dt)
then
x1=x0+(dx1+2*dx2+2*dx3+dx4)/6
and
t1=t0+dt
The basic idea of this is to estimate the x stepsize with respect to a t stepsize at varrying points and average them together, putting the most weight at the middle points. The real proof of the method is far more fascinating, but this is the basic idea.

One popular method is to use estimation methods of differing orders, for example find the estimate using a third order method and another estimate using the 4th order method, and as long as the estimations are close enough to being equal, that means the estimation is converging already, while if the estimations are a way off, it indicates it isn't converging well enough, and a smaller step size is used. this is called adaptive stepsize, and can be very powerful.

Its really a pretty interesting area of study.
 
Last edited:

Related to "State of the Art" in nonlinear differential equations?

1. What is meant by "State of the Art" in nonlinear differential equations?

The term "State of the Art" refers to the current level of progress and development in a particular field. In the context of nonlinear differential equations, it refers to the most advanced and cutting-edge methods, techniques, and theories being used to study and solve these equations.

2. Why is it important to keep up with the State of the Art in nonlinear differential equations?

As with any scientific field, staying informed about the latest advancements in nonlinear differential equations allows researchers to build upon existing knowledge and push the boundaries of what is known. It also ensures that the most effective and efficient methods are being used to solve complex problems.

3. How does the State of the Art in nonlinear differential equations impact other fields?

Nonlinear differential equations have applications in various fields such as physics, engineering, biology, and economics. Therefore, advancements in the State of the Art can have a significant impact on these fields by providing new insights and solutions to complex problems.

4. What are some current research topics within the State of the Art in nonlinear differential equations?

Some current research topics include bifurcation theory, chaos theory, dynamical systems, nonlinear control theory, and numerical methods for solving nonlinear differential equations. Other areas of interest include applications of nonlinear differential equations in various fields, such as fluid dynamics and population dynamics.

5. How can one contribute to the State of the Art in nonlinear differential equations?

Contributing to the State of the Art in nonlinear differential equations can be done through conducting research, publishing findings in reputable journals, attending conferences and workshops, and collaborating with other researchers in the field. It is also essential to stay updated on the latest advancements and techniques in the field and to continuously strive for new and innovative approaches to solving nonlinear differential equations.

Similar threads

  • Differential Equations
Replies
12
Views
2K
  • Differential Equations
Replies
1
Views
1K
  • Differential Equations
Replies
6
Views
2K
  • Differential Equations
Replies
1
Views
1K
Replies
1
Views
1K
Replies
2
Views
2K
  • Differential Equations
Replies
5
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
7
Views
546
  • Differential Equations
Replies
1
Views
729
  • Differential Equations
Replies
3
Views
1K
Back
Top