Internal
problem
ID
[4112]
Book
:
Theory
and
solutions
of
Ordinary
Differential
equations,
Donald
Greenspan,
1960
Section
:
Chapter
2.
First
order
equations.
Exercises
at
page
14
Problem
number
:
2(L)
Date
solved
:
Monday, January 27, 2025 at 08:09:13 AM
CAS
classification
:
[[_homogeneous, `class A`], _rational, [_Abel, `2nd type`, `class A`]]
With initial conditions
✓ Solution by Maple
Time used: 2.408 (sec). Leaf size: 66
dsolve([diff(y(x),x)=(2*x-y(x))/(2*x+y(x)),y(2) = 2],y(x), singsol=all)
✓ Solution by Mathematica
Time used: 0.111 (sec). Leaf size: 137
DSolve[{D[y[x],x]==(2*x-y[x])/(2*x+y[x]),y[2]==2},y[x],x,IncludeSingularSolutions -> True]