Article 3FNB3 Liouville-Green approximation

Liouville-Green approximation

by
John
from John D. Cook on (#3FNB3)

Suppose you have a differential equation of the form

LiouvilleGreenEqn.svg

If the function f(x) is constant, the differential equation is easy to solve in closed form. But when it is not constant, it is very unlikely that closed form solutions exist. But there may be useful closed form approximate solutions.

There is no linear term in the equation above, but there is a standard change of variables to eliminate a linear term and put any second order linear equation with variable coefficients in the form above.

The Liouville-Green approximate solutions are linear combinations of the functions

LiouvilleGreenSolutions.svg

The constant of integration doesn't matter. It would only change the solution by a constant multiple, so any indefinite integral will do.

To try out the Liouville-Green approximation, let's look at the equation

LG_example.svg

Here f(x) = x^2 and so the LG approximation solutions are

LG_ex1.svg

Let's see how these solutions behave compare to a numerical solution of the equation. To make things more definite, we need initial conditions. Let's say A= B = 1, which corresponds to initial conditions y(1) = 2.25525 and y'(1) = -0.0854354.

Here's a plot of the L-G approximation and a numerical solution.

LG_ex2.svg

Here's the Mathematica code that was used to create the plot above.

s = NDSolve[ { y''[x] == x^2 y[x], y[1] == 2.25525, y'[1] == -0.0854354 }, y[x], {x, 1, 3}]g[x_] = (Exp[-x^2/2] + Exp[x^2/2])/Sqrt[x]Plot[ {Evaluate[y[x] /. s], g[x]}, {x, 1, 3}, PlotLabels -> {"Numerical", "LG"}]

For more on Liouville-Green approximations, see Olver's classic book Asymptotics and Special Functions.

Related post: Mechanical vibrations

Bqs7bSFkqGY
External Content
Source RSS or Atom Feed
Feed Location http://feeds.feedburner.com/TheEndeavour?format=xml
Feed Title John D. Cook
Feed Link https://www.johndcook.com/blog
Reply 0 comments