Internal
problem
ID
[4197]
Book
:
Elementary
Differential
equations,
Chaundy,
1969
Section
:
Exercises
3,
page
60
Problem
number
:
2(b)
Date
solved
:
Sunday, March 30, 2025 at 02:42:21 AM
CAS
classification
:
[_linear]
ode:=x*diff(y(x),x)-y(x) = x^3; dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]-y[x]==x^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**3 + x*Derivative(y(x), x) - y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)