Internal
problem
ID
[4104]
Book
:
Theory
and
solutions
of
Ordinary
Differential
equations,
Donald
Greenspan,
1960
Section
:
Chapter
2.
First
order
equations.
Exercises
at
page
14
Problem
number
:
2(d)
Date
solved
:
Monday, January 27, 2025 at 08:08:55 AM
CAS
classification
:
[_linear]
With initial conditions
✓ Solution by Maple
Time used: 0.015 (sec). Leaf size: 13
dsolve([x*diff(y(x),x)=x+y(x),y(-1) = -1],y(x), singsol=all)
✓ Solution by Mathematica
Time used: 0.027 (sec). Leaf size: 16
DSolve[{x*D[y[x],x]==x+y[x],y[-1]==-1},y[x],x,IncludeSingularSolutions -> True]