Internal
problem
ID
[3046]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
12,
page
46
Problem
number
:
45
Date
solved
:
Tuesday, September 30, 2025 at 06:25:31 AM
CAS
classification
:
[_linear]
With initial conditions
ode:=x*diff(y(x),x) = x^4+4*y(x); ic:=[y(1) = 0]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=x*D[y[x],x]==x^4+4*y[x]; ic={y[1]==0}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**4 + x*Derivative(y(x), x) - 4*y(x),0) ics = {y(1): 0} dsolve(ode,func=y(x),ics=ics)