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