Internal
problem
ID
[1464]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
11th
ed.,
Boyce,
DiPrima,
Meade
Section
:
Chapter
4.1,
Higher
order
linear
differential
equations.
General
theory.
page
173
Problem
number
:
8
Date
solved
:
Saturday, March 29, 2025 at 10:55:51 PM
CAS
classification
:
[[_high_order, _missing_x]]
ode:=diff(diff(diff(diff(y(t),t),t),t),t)+diff(diff(y(t),t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,4}]+D[y[t],{t,2}]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(Derivative(y(t), (t, 2)) + Derivative(y(t), (t, 4)),0) ics = {} dsolve(ode,func=y(t),ics=ics)