Internal
problem
ID
[18926]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
VIII.
End
of
chapter
problems
at
page
107
Problem
number
:
Ex.
16
Date
solved
:
Monday, March 31, 2025 at 06:25:10 PM
CAS
classification
:
[[_3rd_order, _fully, _exact, _linear]]
ode:=diff(diff(diff(y(x),x),x),x)+cos(x)*diff(diff(y(x),x),x)-2*sin(x)*diff(y(x),x)-y(x)*cos(x) = sin(2*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]+Cos[x]*D[y[x],{x,2}]-2*Sin[x]*D[y[x],x]-y[x]*Cos[x]==Sin[2*x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x)*cos(x) - 2*sin(x)*Derivative(y(x), x) - sin(2*x) + cos(x)*Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -(-y(x)*cos(x) - sin(2*x) + cos(x)*Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 3)))/(2*sin(x)) + Derivative(y(x), x) cannot be solved by the factorable group method