Desperate trying to solve a simple Sturm-Liouville equation

  • Thread starter Thread starter omyojj
  • Start date Start date
  • Tags Tags
    Desperate
omyojj
Messages
32
Reaction score
0
While dealing with a wave problem,
I encountered the following equation

\frac{d}{dx}\left[(1-x^2)^2\frac{d}{dx}y\right] - k^2y = -\omega^2y

with x ∈ [0,A], (0<A<=1)

where k is a real number.

Thus it has eigenvalue ω^2 and weight unity.

Boundary conditions are

\frac{dy}{dx} = 0

at x = 0 and

y=2A

at x= A.


I only need to obtain the solution for the ground state (the one with lowest eigenvalue).

for general values of k>0, 0<A<1.

I find from the physical point of view that the solution should look like

y_0=constant for A->1,

and y_0 = cosh(kx) for A -> 0


Can anybody give me a hint on how to solve this equation?
 
Last edited:
Physics news on Phys.org
Here's a numeric approach in Mathematica:

Code:
k = 1.21; 
\[Omega] = 3.25; 
a = 0.825; 

sols = 
   (First[NDSolve[{(1 - x^2)^2*Derivative[2][y][
            x] - 4*x*(1 - x^2)*Derivative[1][y][
            x] + (\[Omega]^2 - k^2)*y[x] == 0, 
        Derivative[1][y][0] == 0, y[a] == 2*a}, y, 
       x, Method -> {"Shooting", 
         "StartingInitialConditions" -> 
          {y[0] == #1, Derivative[1][y][0] == 
            0}}]] & ) /@ {-2, 0, 2}; 

Plot[Evaluate[y[x] /. sols], {x, 0, a}, 
  PlotStyle -> {Black, Blue, Green}]
 
Thread 'Direction Fields and Isoclines'
I sketched the isoclines for $$ m=-1,0,1,2 $$. Since both $$ \frac{dy}{dx} $$ and $$ D_{y} \frac{dy}{dx} $$ are continuous on the square region R defined by $$ -4\leq x \leq 4, -4 \leq y \leq 4 $$ the existence and uniqueness theorem guarantees that if we pick a point in the interior that lies on an isocline there will be a unique differentiable function (solution) passing through that point. I understand that a solution exists but I unsure how to actually sketch it. For example, consider a...
Back
Top