Internal
problem
ID
[7558]
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.23
Date
solved
:
Thursday, March 13, 2025 at 06:03:58 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=(-x^2+1)*diff(diff(z(x),x),x)+(1-3*x)*diff(z(x),x)+k*z(x) = 0; dsolve(ode,z(x), singsol=all);
ode=(1-x^2)*D[z[x],{x,2}]+(1-3*x)*D[z[x],x]+k*z[x]==0; ic={}; DSolve[{ode,ic},z[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") k = symbols("k") z = Function("z") ode = Eq(k*z(x) + (1 - 3*x)*Derivative(z(x), x) + (1 - x**2)*Derivative(z(x), (x, 2)),0) ics = {} dsolve(ode,func=z(x),ics=ics)
False