Internal
problem
ID
[2333]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.4.
Page
24
Problem
number
:
18
Date
solved
:
Tuesday, September 30, 2025 at 05:28:57 AM
CAS
classification
:
[[_homogeneous, `class A`], _rational, [_Abel, `2nd type`, `class A`]]
ode:=diff(y(t),t) = (t+y(t))/(t-y(t)); dsolve(ode,y(t), singsol=all);
ode=D[y[t],t]==(t+y[t])/(t-y[t]); ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(Derivative(y(t), t) - (t + y(t))/(t - y(t)),0) ics = {} dsolve(ode,func=y(t),ics=ics)