Internal
problem
ID
[21718]
Book
:
The
Differential
Equations
Problem
Solver.
VOL.
I.
M.
Fogiel
director.
REA,
NY.
1978.
ISBN
78-63609
Section
:
Chapter
19.
Change
of
variables.
Page
483
Problem
number
:
19-11
Date
solved
:
Thursday, October 02, 2025 at 08:01:09 PM
CAS
classification
:
[[_Emden, _Fowler]]
With initial conditions
ode:=x^2*diff(diff(u(x),x),x)-3*x*diff(u(x),x)+13*u(x) = 0; ic:=[u(1) = -1, D(u)(1) = 1]; dsolve([ode,op(ic)],u(x), singsol=all);
ode=x^2*D[u[x],{x,2}]-3*x*D[u[x],x]+13*u[x] ==0; ic={u[1]==-1,Derivative[1][u][1] ==1}; DSolve[{ode,ic},u[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") u = Function("u") ode = Eq(x**2*Derivative(u(x), (x, 2)) - 3*x*Derivative(u(x), x) + 13*u(x),0) ics = {u(1): -1, Subs(Derivative(u(x), x), x, 1): 1} dsolve(ode,func=u(x),ics=ics)