Internal
problem
ID
[15542]
Book
:
DIFFERENTIAL
and
INTEGRAL
CALCULUS.
VOL
I.
by
N.
PISKUNOV.
MIR
PUBLISHERS,
Moscow
1969.
Section
:
Chapter
8.
Differential
equations.
Exercises
page
595
Problem
number
:
149
Date
solved
:
Thursday, October 02, 2025 at 10:19:42 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(s(t),t),t)-a^2*s(t) = t+1; dsolve(ode,s(t), singsol=all);
ode=D[s[t],{t,2}]-a^2*s[t]==1+t; ic={}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") a = symbols("a") s = Function("s") ode = Eq(-a**2*s(t) - t + Derivative(s(t), (t, 2)) - 1,0) ics = {} dsolve(ode,func=s(t),ics=ics)