Internal
problem
ID
[2295]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.2.
Page
6
Problem
number
:
Example
4
Date
solved
:
Tuesday, September 30, 2025 at 05:26:03 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=diff(y(t),t)+exp(t^2)*y(t) = 0; ic:=[y(1) = 2]; dsolve([ode,op(ic)],y(t), singsol=all);
ode=D[y[t],t]+Exp[t^2]*y[t]==0; ic=y[1]==2; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(y(t)*exp(t**2) + Derivative(y(t), t),0) ics = {y(1): 2} dsolve(ode,func=y(t),ics=ics)