Internal
problem
ID
[23169]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
5.
Linear
equations
of
the
second
order
with
constant
coefficients.
Exercise
5e
at
page
91
Problem
number
:
9
Date
solved
:
Thursday, October 02, 2025 at 09:23:44 PM
CAS
classification
:
[[_2nd_order, _quadrature]]
With initial conditions
ode:=diff(diff(s(t),t),t) = 5*t^2-7*t; ic:=[s(0) = 0, s(1) = 1/4]; dsolve([ode,op(ic)],s(t), singsol=all);
ode=D[s[t],{t,2}]==5*t^2-7*t; ic={s[0]==0,s[1]==1/4}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") s = Function("s") ode = Eq(-5*t**2 + 7*t + Derivative(s(t), (t, 2)),0) ics = {s(0): 0, s(1): 1/4} dsolve(ode,func=s(t),ics=ics)