Internal
problem
ID
[22555]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
two.
First
order
and
simple
higher
order
ordinary
differential
equations.
A
Exercises
at
page
52
Problem
number
:
1
(i)
Date
solved
:
Thursday, October 02, 2025 at 08:50:37 PM
CAS
classification
:
[_separable]
With initial conditions
ode:=diff(i(t),t) = (t-i(t)*t)/(t^2+1); ic:=[i(0) = 0]; dsolve([ode,op(ic)],i(t), singsol=all);
ode=D[i[t],t]==(t-i[t]*t)/(t^2+1); ic={i[0]==0}; DSolve[{ode,ic},i[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") i = Function("i") ode = Eq(Derivative(i(t), t) - (-t*i(t) + t)/(t**2 + 1),0) ics = {i(0): 0} dsolve(ode,func=i(t),ics=ics)