Internal
problem
ID
[13652]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
9,
First
order
linear
equations
and
the
integrating
factor.
Exercises
page
86
Problem
number
:
9.1
(i)
Date
solved
:
Wednesday, March 05, 2025 at 10:10:00 PM
CAS
classification
:
[_linear]
ode:=diff(y(x),x)+y(x)/x = x^2; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+y[x]/x==x^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2 + Derivative(y(x), x) + y(x)/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)