Internal
problem
ID
[2302]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.2.
Page
9
Problem
number
:
4
Date
solved
:
Saturday, March 29, 2025 at 11:53:19 PM
CAS
classification
:
[[_linear, `class A`]]
ode:=diff(y(t),t)+y(t) = exp(t)*t; dsolve(ode,y(t), singsol=all);
ode=y[t]+D[y[t],t] == Exp[t]*t; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-t*exp(t) + y(t) + Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)