Internal
problem
ID
[14063]
Book
:
Differential
Equations,
Linear,
Nonlinear,
Ordinary,
Partial.
A.C.
King,
J.Billingham,
S.R.Otto.
Cambridge
Univ.
Press
2003
Section
:
Chapter
1
VARIABLE
COEFFICIENT,
SECOND
ORDER
DIFFERENTIAL
EQUATIONS.
Problems
page
28
Problem
number
:
Problem
1.3(c)
Date
solved
:
Monday, March 31, 2025 at 12:02:24 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(y(x),x),x)+diff(y(x),x)/x+(1-1/4/x^2)*y(x) = x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+1/x*D[y[x],x]+(1-1/(4*x^2))*y[x]==x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x + (1 - 1/(4*x**2))*y(x) + Derivative(y(x), (x, 2)) + Derivative(y(x), x)/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (4*x**2*(x - y(x) - Derivative(y(x), (x, 2))) + y(x))/(4*x) cannot be solved by the factorable group method