Internal
problem
ID
[21118]
Book
:
Ordinary
Differential
Equations.
By
Wolfgang
Walter.
Graduate
texts
in
Mathematics.
Springer.
NY.
QA372.W224
1998
Section
:
Chapter
V.
Complex
Linear
Systems.
Excercise
XII
at
page
244
Problem
number
:
(a)
Date
solved
:
Thursday, October 02, 2025 at 07:08:36 PM
CAS
classification
:
[[_2nd_order, _exact, _linear, _homogeneous]]
ode:=z^2*diff(diff(u(z),z),z)+(3*z+1)*diff(u(z),z)+u(z) = 0; dsolve(ode,u(z), singsol=all);
ode=z^2*D[u[z],{z,2}]+(3*z+1)*D[u[z],z]+u[z]==0; ic={}; DSolve[{ode,ic},u[z],z,IncludeSingularSolutions->True]
from sympy import * z = symbols("z") u = Function("u") ode = Eq(z**2*Derivative(u(z), (z, 2)) + (3*z + 1)*Derivative(u(z), z) + u(z),0) ics = {} dsolve(ode,func=u(z),ics=ics)
NotImplementedError : The given ODE Derivative(u(z), z) - (-z**2*Derivative(u(z), (z, 2)) - u(z))/(3*z + 1) cannot be solved by the factorable group method