Internal
problem
ID
[17715]
Book
:
Differential
equations.
An
introduction
to
modern
methods
and
applications.
James
Brannan,
William
E.
Boyce.
Third
edition.
Wiley
2015
Section
:
Chapter
6.
Systems
of
First
Order
Linear
Equations.
Section
6.1
(Definitions
and
examples).
Problems
at
page
388
Problem
number
:
4
Date
solved
:
Thursday, March 13, 2025 at 10:47:56 AM
CAS
classification
:
[[_high_order, _with_linear_symmetries]]
ode:=diff(diff(diff(diff(y(t),t),t),t),t)+6*diff(diff(diff(y(t),t),t),t)+3*y(t) = t; dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,4}]+6*D[y[t],{t,3}]+3*y[t]==t; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-t + 3*y(t) + 6*Derivative(y(t), (t, 3)) + Derivative(y(t), (t, 4)),0) ics = {} dsolve(ode,func=y(t),ics=ics)
NotImplementedError : Cannot find 4 solutions to the homogeneous equation necessary to apply undetermined coefficients to -t + 3*y(t) + 6*Derivative(y(t), (t, 3)) + Derivative(y(t), (t, 4)) (number of terms != order)