Internal
problem
ID
[15004]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
8,
Separable
equations.
Exercises
page
72
Problem
number
:
8.1
(v)
Date
solved
:
Thursday, October 02, 2025 at 09:58:24 AM
CAS
classification
:
[_separable]
ode:=diff(y(t),t) = exp(-t^2)*y(t)^2; dsolve(ode,y(t), singsol=all);
ode=D[y[t],t]==Exp[-t^2]*y[t]^2; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-y(t)**2*exp(-t**2) + Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)