87.8.1 problem 1

Internal problem ID [23355]
Book : Ordinary differential equations with modern applications. Ladas, G. E. and Finizio, N. Wadsworth Publishing. California. 1978. ISBN 0-534-00552-7. QA372.F56
Section : Chapter 2. Linear differential equations. Exercise at page 65
Problem number : 1
Date solved : Thursday, October 02, 2025 at 09:39:35 PM
CAS classification : [[_Emden, _Fowler]]

\begin{align*} y^{\prime \prime }+y x&=0 \end{align*}
Maple. Time used: 0.002 (sec). Leaf size: 17
ode:=diff(diff(y(x),x),x)+x*y(x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = c_1 \operatorname {AiryAi}\left (-x \right )+c_2 \operatorname {AiryBi}\left (-x \right ) \]
Mathematica. Time used: 0.025 (sec). Leaf size: 28
ode=D[y[x],{x,2}]+x*y[x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to c_1 \operatorname {AiryAi}\left (\sqrt [3]{-1} x\right )+c_2 \operatorname {AiryBi}\left (\sqrt [3]{-1} x\right ) \end{align*}
Sympy. Time used: 0.032 (sec). Leaf size: 15
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x*y(x) + Derivative(y(x), (x, 2)),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = C_{1} Ai\left (- x\right ) + C_{2} Bi\left (- x\right ) \]