Internal
problem
ID
[6779]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
19.
Linear
equations
with
variable
coefficients
(Misc.
types).
Supplemetary
problems.
Page
132
Problem
number
:
29
Date
solved
:
Sunday, March 30, 2025 at 11:22:28 AM
CAS
classification
:
[[_3rd_order, _with_linear_symmetries]]
ode:=(2*x-3)*diff(diff(diff(y(x),x),x),x)-(6*x-7)*diff(diff(y(x),x),x)+4*x*diff(y(x),x)-4*y(x) = 8; dsolve(ode,y(x), singsol=all);
ode=(2*x-3)*D[y[x],{x,3}]-(6*x-7)*D[y[x],{x,2}]+4*x*D[y[x],x]-4*y[x]==8; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(4*x*Derivative(y(x), x) + (2*x - 3)*Derivative(y(x), (x, 3)) - (6*x - 7)*Derivative(y(x), (x, 2)) - 4*y(x) - 8,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (2*x*(3*Derivative(y(x), (x, 2)) - Derivative(y(x), (x, 3))) + 4*y(x) - 7*Derivative(y(x), (x, 2)) + 3*Derivative(y(x), (x, 3)) + 8)/(4*x) cannot be solved by the factorable group method