Internal
problem
ID
[15902]
Book
:
DIFFERENTIAL
EQUATIONS
by
Paul
Blanchard,
Robert
L.
Devaney,
Glen
R.
Hall.
4th
edition.
Brooks/Cole.
Boston,
USA.
2012
Section
:
Chapter
1.
First-Order
Differential
Equations.
Exercises
section
1.2.
page
33
Problem
number
:
18
Date
solved
:
Thursday, October 02, 2025 at 10:29:34 AM
CAS
classification
:
[_separable]
ode:=diff(y(t),t) = 4*t/(1+3*y(t)^2); dsolve(ode,y(t), singsol=all);
ode=D[y[t],t]==4*t/(1+3*y[t]^2); ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-4*t/(3*y(t)**2 + 1) + Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)
Timed Out