Second order differential equation problem

ODEMath
Messages
3
Reaction score
0
Consider the second order linear equation

z" + c(t)z = 0
Where c(t) is a continuous real-valued function of a real variable.


(a) Show that every (nontrivial) solution of this equation is non-oscillatory if c(t) < (1 - epsilon)/(4t^2) for t>=1, where epsilon > 0 is a real number.


(b)Show that every (nontrivial) solution of this equation is oscillatory if c(t) > (1+epsilon)/(4t^2) for t>=1, where epsilon > 0 is a real number.
 
Physics news on Phys.org
ODEMath said:
Consider the second order linear equation
z" + c(t)z = 0
Where c(t) is a continuous real-valued function of a real variable.
(a) Show that every (nontrivial) solution of this equation is non-oscillatory if c(t) < (1 - epsilon)/(4t^2) for t>=1, where epsilon > 0 is a real number.
(b)Show that every (nontrivial) solution of this equation is oscillatory if c(t) > (1+epsilon)/(4t^2) for t>=1, where epsilon > 0 is a real number.

ODE, not sure of your intentions about this interesting problem (my view anyway), but if I were to be confronted with such a task I would frist, before doing anything analytically, just solve a few of them numerically (cus it's easy that way in Mathematica esp. with 'EquationTrekker') just to see what's going on qualitatively with this, then I suppose I'd look into the criteria for underdamping, overdamping, critial damping, then start to approach it analytically.
 
Just for closure I'd like to complete this problem since I hate not being able to solve something I feel I'm capable of (hope you guys don't mind):

For starters damping does not enter into the equation since the first derivative is absent. Ideally then one seeks to find an analytical expression for the solution and then analyze it for the various restrictions indicated above for c(t). It took me a while but after an hour or two (I'm never gonna' get good at this stuf), I realized the equation is in Euler-Cauchy form:

4x^2 y^{&#039;&#039;}+0xy^{&#039;}+a(1+\epsilon)y=0

Note that I'm using the parameter 'a' to distinguish the two cases above:

\frac{a(1+\epsilon)}{4t^2}&lt;\frac{1+\epsilon}{4t^2}\:\text{when}\:a&lt;1\:\text{and}\:\epsilon&lt;0

\frac{a(1+\epsilon)}{4t^2}&gt;\frac{1+\epsilon}{4t^2}\:\text{when}\:a&gt;1\:\text{and}\:\epsilon&gt;0

Letting:

y(t)=t^{m}

and substituting into the ODE and solving for the auxiliary equation:

4m^2-4m+a(1+\epsilon)=0

or:

m=\frac{1}{2}\pm\frac{1}{2}\sqrt{1-a(1+\epsilon)}

The solution then becomes:

y(t)=c_1t^{1/2+1/2\sqrt{1-a(1+\epsilon)}}+<br /> c_2t^{1/2-1/2\sqrt{1-a(1+\epsilon)}}

Thus becoming clear that the two cases hinge upon the quantity inside the radicals. That is, when:

1\geq a(1+\epsilon)

the solution is non-oscillatory and exponential in form as indicated above. This of course will be the case when a<1 and \epsilon&lt;0.

However if:

a(1+\epsilon)&gt;1

then complex roots enter the solution. Using Euler's expansion of such and noting that:

x^{a+bi}=x^ae^{ibln(x)}

the solution becomes:

y(t)=c_1x^{1/2}Cos[1/2\sqrt{a(1+\epsilon)-1}ln(t)]+<br /> c_2x^{1/2}Sin[1/2\sqrt{a(1+\epsilon)-1}ln(t)]

\:\text{when}\:a&gt;1\:\text{and}\:\epsilon&gt;0

Which of course is oscillatory.

Ok, I'm done.:smile:
 
Last edited:
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top