Internal
problem
ID
[17724]
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
:
5
Date
solved
:
Monday, March 31, 2025 at 04:26:03 PM
CAS
classification
:
[[_3rd_order, _linear, _nonhomogeneous]]
ode:=t*diff(diff(diff(y(t),t),t),t)+sin(t)*diff(diff(y(t),t),t)+8*y(t) = cos(t); dsolve(ode,y(t), singsol=all);
ode=t*D[y[t],{t,3}]+Sin[t]*D[y[t],{t,2}]+8*y[t]==Cos[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
Not solved
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t*Derivative(y(t), (t, 3)) + 8*y(t) + sin(t)*Derivative(y(t), (t, 2)) - cos(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)
NotImplementedError : solve: Cannot solve t*Derivative(y(t), (t, 3)) + 8*y(t) + sin(t)*Derivative(y(t), (t, 2)) - cos(t)