Internal
problem
ID
[1301]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Chapter
3,
Second
order
linear
equations,
3.3
Complex
Roots
of
the
Characteristic
Equation
,
page
164
Problem
number
:
44
Date
solved
:
Saturday, March 29, 2025 at 10:51:40 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries], [_2nd_order, _linear, `_with_symmetry_[0,F(x)]`]]
ode:=diff(diff(y(t),t),t)+t*diff(y(t),t)+exp(-t^2)*y(t) = 0; dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]+t*D[y[t],t]+exp(-t^2)*y[t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t*Derivative(y(t), t) + y(t)*exp(-t**2) + Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)