Internal
problem
ID
[20270]
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.
4
Date
solved
:
Thursday, October 02, 2025 at 05:40:42 PM
CAS
classification
:
[[_3rd_order, _exact, _linear, _nonhomogeneous]]
ode:=x^3*diff(diff(diff(y(x),x),x),x)+4*x^2*diff(diff(y(x),x),x)+x*(x^2+2)*diff(y(x),x)+3*x^2*y(x) = 2*x; dsolve(ode,y(x), singsol=all);
ode=x^3*D[y[x],{x,3}]+4*x^2*D[y[x],{x,2}]+x*(x^2+2)*D[y[x],x]+3*x^2*y[x]==2*x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**3*Derivative(y(x), (x, 3)) + 3*x**2*y(x) + 4*x**2*Derivative(y(x), (x, 2)) + x*(x**2 + 2)*Derivative(y(x), x) - 2*x,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-x**2*Derivative(y(x), (x, 3)) - 3*x*y(x) - 4*x*Derivative(y(x), (x, 2)) + 2)/(x**2 + 2) cannot be solved by the factorable group method