Internal
problem
ID
[1463]
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
:
2
Date
solved
:
Saturday, March 29, 2025 at 10:55:50 PM
CAS
classification
:
[[_high_order, _with_linear_symmetries]]
ode:=t*(t-1)*diff(diff(diff(diff(y(t),t),t),t),t)+exp(t)*diff(diff(y(t),t),t)+4*t^2*y(t) = 0; dsolve(ode,y(t), singsol=all);
ode=t*(t-1)*D[y[t],{t,4}]+Exp[t]*D[y[t],{t,2}]+4*t^2*y[t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
Not solved
from sympy import * t = symbols("t") y = Function("y") ode = Eq(4*t**2*y(t) + t*(t - 1)*Derivative(y(t), (t, 4)) + exp(t)*Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics)
NotImplementedError : solve: Cannot solve 4*t**2*y(t) + t*(t - 1)*Derivative(y(t), (t, 4)) + exp(t)*Derivative(y(t), (t, 2))