Internal
problem
ID
[9809]
Book
:
Collection
of
Kovacic
problems
Section
:
section
1
Problem
number
:
654
Date
solved
:
Sunday, March 30, 2025 at 02:47:06 PM
CAS
classification
:
[_Lienard]
ode:=z*diff(diff(y(z),z),z)-2*diff(y(z),z)+z*y(z) = 0; dsolve(ode,y(z), singsol=all);
ode=z*D[y[z],{z,2}]-2*D[y[z],z]+z*y[z]==0; ic={}; DSolve[{ode,ic},y[z],z,IncludeSingularSolutions->True]
from sympy import * z = symbols("z") y = Function("y") ode = Eq(z*y(z) + z*Derivative(y(z), (z, 2)) - 2*Derivative(y(z), z),0) ics = {} dsolve(ode,func=y(z),ics=ics)