Internal
problem
ID
[13644]
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
:
Wednesday, March 05, 2025 at 10:06:16 PM
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)