Internal
problem
ID
[19908]
Book
:
A
short
course
on
differential
equations.
By
Donald
Francis
Campbell.
Maxmillan
company.
London.
1907
Section
:
Chapter
III.
Ordinary
differential
equations
of
the
first
order
and
first
degree.
Exercises
at
page
33
Problem
number
:
4
Date
solved
:
Thursday, October 02, 2025 at 05:00:48 PM
CAS
classification
:
[_linear]
ode:=(x^2+1)*diff(y(x),x)+x^2*y(x) = x^3-x^2*arctan(x); dsolve(ode,y(x), singsol=all);
ode=(1+x^2)*D[y[x],x]+x^2*y[x]==x^3-x^2*ArcTan[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**3 + x**2*y(x) + x**2*atan(x) + (x**2 + 1)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)