Internal
problem
ID
[19355]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Chapter
VII.
Exact
differential
equations
and
certain
particular
forms
of
equations.
Misc.
Exercise
on
chapter
VII.
Page
118
Problem
number
:
14
Date
solved
:
Thursday, March 13, 2025 at 02:20:25 PM
CAS
classification
:
[[_3rd_order, _fully, _exact, _linear]]
ode:=(x^3-4*x)*diff(diff(diff(y(x),x),x),x)+(9*x^2-4)*diff(diff(y(x),x),x)+18*x*diff(y(x),x)+6*y(x) = 6; dsolve(ode,y(x), singsol=all);
ode=(x^3-4*x)*D[y[x],{x,3}]+(9*x^2-4)*D[y[x],{x,2}]+18*x*D[y[x],x]+6*y[x]==6; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(18*x*Derivative(y(x), x) + (9*x**2 - 4)*Derivative(y(x), (x, 2)) + (x**3 - 4*x)*Derivative(y(x), (x, 3)) + 6*y(x) - 6,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (x*(-x**2*Derivative(y(x), (x, 3)) - 9*x*Derivative(y(x), (x, 2)) + 4*Derivative(y(x), (x, 3))) - 6*y(x) + 4*Derivative(y(x), (x, 2)) + 6)/(18*x) cannot be solved by the factorable group method