Internal
problem
ID
[12976]
Book
:
A
First
Course
in
Differential
Equations
by
J.
David
Logan.
Third
Edition.
Springer-Verlag,
NY.
2015.
Section
:
Chapter
1,
First
order
differential
equations.
Section
1.3.1
Separable
equations.
Exercises
page
26
Problem
number
:
4(d)
Date
solved
:
Wednesday, March 05, 2025 at 08:55:32 PM
CAS
classification
:
[_separable]
ode:=diff(R(t),t) = (t+1)*(1+R(t)^2); dsolve(ode,R(t), singsol=all);
ode=D[ R[t],t]==(t+1)*(1+R[t]^2); ic={}; DSolve[{ode,ic},R[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") R = Function("R") ode = Eq(-(t + 1)*(R(t)**2 + 1) + Derivative(R(t), t),0) ics = {} dsolve(ode,func=R(t),ics=ics)