Internal
problem
ID
[15267]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
4,
Second
and
Higher
Order
Linear
Differential
Equations.
Problems
page
221
Problem
number
:
Problem
5(c)
Date
solved
:
Friday, October 03, 2025 at 07:30:07 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
With initial conditions
ode:=(x^2+1)*diff(diff(y(x),x),x)+(x-1)*diff(y(x),x)+y(x) = 0; ic:=[y(0) = 0, D(y)(0) = 1]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=(x^2+1)*D[y[x],{x,2}]+(x-1)*D[y[x],x]+y[x]==0; ic={y[0]==0,Derivative[1][y][0] ==1}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") y = Function("y") ode = Eq((x - 1)*Derivative(y(x), x) + (x**2 + 1)*Derivative(y(x), (x, 2)) + y(x),0) ics = {y(0): 0, Subs(Derivative(y(x), x), x, 0): 1} dsolve(ode,func=y(x),ics=ics)
False