Internal
problem
ID
[1465]
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
:
9
Date
solved
:
Saturday, March 29, 2025 at 10:55:52 PM
CAS
classification
:
[[_3rd_order, _missing_x]]
ode:=diff(diff(diff(y(t),t),t),t)+2*diff(diff(y(t),t),t)-diff(y(t),t)-2*y(t) = 0; dsolve(ode,y(t), singsol=all);
ode=D[ y[t],{t,3}]+2*D[y[t],{t,2}]-D[y[t],t]-2*y[t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-2*y(t) - Derivative(y(t), t) + 2*Derivative(y(t), (t, 2)) + Derivative(y(t), (t, 3)),0) ics = {} dsolve(ode,func=y(t),ics=ics)