Internal
problem
ID
[8164]
Book
:
A
First
Course
in
Differential
Equations
with
Modeling
Applications
by
Dennis
G.
Zill.
12
ed.
Metric
version.
2024.
Cengage
learning.
Section
:
Chapter
1.
Introduction
to
differential
equations.
Exercises
1.1
at
page
12
Problem
number
:
3
Date
solved
:
Tuesday, September 30, 2025 at 05:16:22 PM
CAS
classification
:
[[_high_order, _with_linear_symmetries]]
ode:=t^5*diff(diff(diff(diff(y(t),t),t),t),t)-t^3*diff(diff(y(t),t),t)+6*y(t) = 0; dsolve(ode,y(t), singsol=all);
ode=t^5*D[y[t],{t,4}]-t^3*D[y[t],{t,2}]+6*y[t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t**5*Derivative(y(t), (t, 4)) - t**3*Derivative(y(t), (t, 2)) + 6*y(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)
NotImplementedError : solve: Cannot solve t**5*Derivative(y(t), (t, 4)) - t**3*Derivative(y(t), (t, 2)) + 6*y(t)