Internal
problem
ID
[2594]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
2.
Second
order
differential
equations.
Section
2.5.
Method
of
judicious
guessing.
Excercises
page
164
Problem
number
:
1
Date
solved
:
Tuesday, March 04, 2025 at 02:28:50 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(y(t),t),t)+3*y(t) = t^3-1; dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,2}]+3*y[t]==t^3-1; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-t**3 + 3*y(t) + Derivative(y(t), (t, 2)) + 1,0) ics = {} dsolve(ode,func=y(t),ics=ics)