Internal
problem
ID
[22194]
Book
:
Schaums
outline
series.
Differential
Equations
By
Richard
Bronson.
1973.
McGraw-Hill
Inc.
ISBN
0-07-008009-7
Section
:
Chapter
10.
Linear
differential
equations.
General
remarks.
Solved
problems.
Page
54
Problem
number
:
10.1
(b)
Date
solved
:
Thursday, October 02, 2025 at 08:33:58 PM
CAS
classification
:
[[_3rd_order, _exact, _nonlinear]]
ode:=y(x)*diff(diff(diff(y(x),x),x),x)+x*diff(y(x),x)+y(x) = x^2; dsolve(ode,y(x), singsol=all);
ode=y[x]*D[y[x],{x,3}]+x*D[y[x],x]+y[x]==x^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2 + x*Derivative(y(x), x) + y(x)*Derivative(y(x), (x, 3)) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (x**2 - y(x)*Derivative(y(x), (x, 3)) - y(x))/x cannot be solved by the factorable group method