Internal
problem
ID
[23950]
Book
:
Elementary
Differential
Equations.
By
Lee
Roy
Wilcox
and
Herbert
J.
Curtis.
1961
first
edition.
International
texbook
company.
Scranton,
Penn.
USA.
CAT
number
61-15976
Section
:
Chapter
1.
Introduction.
Exercise
at
page
6
Problem
number
:
21
Date
solved
:
Thursday, October 02, 2025 at 09:46:44 PM
CAS
classification
:
[_quadrature]
ode:=diff(y(t),t) = (t^2+1)/t/(t-2); dsolve(ode,y(t), singsol=all);
ode=D[y[t],t]==(t^2+1)/(t*(t-2)); 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**2 + 1)/(t*(t - 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)