Internal
problem
ID
[8954]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
4.0
Problem
number
:
62
Date
solved
:
Sunday, March 30, 2025 at 01:56:21 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Time used: 0.764 (sec)
Solve
In normal form the ode
Becomes
Where
The Lagrange adjoint ode is given by
Which is solved for
Where in this case
Therefore the solution to the homogeneous Airy ODE becomes
Will add steps showing solving for IC soon.
The original ode now reduces to first order ode
Or
Which is now a first order ode. This is now solved for
is separable as it can be written as
Where
Integrating gives
Taking the exponential of both sides the solution becomes
We now need to find the singular solutions, these are found by finding for what values
for
Now we go over each such singular solution and check if it verifies the ode itself and any initial conditions given. If it does not then the singular solution will not be used.
Therefore the solutions found are
Hence, the solution found using Lagrange adjoint equation method is
Will add steps showing solving for IC soon.
Summary of solutions found
ode:=x/(1-x)*diff(diff(y(x),x),x)+x*y(x) = 0; dsolve(ode,y(x), singsol=all);
Maple trace
Methods for second order ODEs: --- Trying classification methods --- trying a quadrature checking if the LODE has constant coefficients checking if the LODE is of Euler type trying a symmetry of the form [xi=0, eta=F(x)] checking if the LODE is missing y -> Trying a Liouvillian solution using Kovacics algorithm <- No Liouvillian solutions exists -> Trying a solution in terms of special functions: -> Bessel <- Bessel successful <- special function solution successful
Maple step by step
ode=x/(1-x)*D[y[x],{x,2}]+x*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*y(x) + x*Derivative(y(x), (x, 2))/(1 - x),0) ics = {} dsolve(ode,func=y(x),ics=ics)