Internal
problem
ID
[9806]
Book
:
Collection
of
Kovacic
problems
Section
:
section
1
Problem
number
:
651
Date
solved
:
Sunday, March 30, 2025 at 02:47:02 PM
CAS
classification
:
[_Gegenbauer]
ode:=(-z^2+1)*diff(diff(y(z),z),z)-3*z*diff(y(z),z)+y(z) = 0; dsolve(ode,y(z), singsol=all);
ode=(1-z^2)*D[y[z],{z,2}]-3*z*D[y[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(-3*z*Derivative(y(z), z) + (1 - z**2)*Derivative(y(z), (z, 2)) + y(z),0) ics = {} dsolve(ode,func=y(z),ics=ics)