Internal
problem
ID
[13842]
Book
:
Differential
equations
and
the
calculus
of
variations
by
L.
ElSGOLTS.
MIR
PUBLISHERS,
MOSCOW,
Third
printing
1977.
Section
:
Chapter
2,
DIFFERENTIAL
EQUATIONS
OF
THE
SECOND
ORDER
AND
HIGHER.
Problems
page
172
Problem
number
:
Problem
14
Date
solved
:
Monday, March 31, 2025 at 08:14:54 AM
CAS
classification
:
[[_high_order, _with_linear_symmetries]]
ode:=diff(diff(diff(diff(x(t),t),t),t),t)-2*diff(diff(x(t),t),t)+x(t) = t^2-3; dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,4}]-2*D[x[t],{t,2}]+x[t]==t^2-3; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-t**2 + x(t) - 2*Derivative(x(t), (t, 2)) + Derivative(x(t), (t, 4)) + 3,0) ics = {} dsolve(ode,func=x(t),ics=ics)