Internal
problem
ID
[19524]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Book
Solved
Excercises.
Chapter
VII.
Exact
differential
equations.
Problem
number
:
Ex
3
page
97
Date
solved
:
Monday, March 31, 2025 at 07:29:13 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