Internal
problem
ID
[7559]
Book
:
THEORY
OF
DIFFERENTIAL
EQUATIONS
IN
ENGINEERING
AND
MECHANICS.
K.T.
CHAU,
CRC
Press.
Boca
Raton,
FL.
2018
Section
:
Chapter
3.
Ordinary
Differential
Equations.
Section
3.6
Summary
and
Problems.
Page
218
Problem
number
:
Problem
3.24
Date
solved
:
Thursday, March 13, 2025 at 06:04:00 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=(-x^2+1)*diff(diff(eta(x),x),x)-(1+x)*diff(eta(x),x)+(k+1)*eta(x) = 0; dsolve(ode,eta(x), singsol=all);
ode=(1-x^2)*D[z[x],{x,2}]-(1+x)*D[z[x],x]+(k+1)*z[x]==0; ic={}; DSolve[{ode,ic},z[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") k = symbols("k") eta = Function("eta") ode = Eq((1 - x**2)*Derivative(eta(x), (x, 2)) + (k + 1)*eta(x) - (x + 1)*Derivative(eta(x), x),0) ics = {} dsolve(ode,func=eta(x),ics=ics)
False