Internal
problem
ID
[5717]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
2
Problem
number
:
10.1
Date
solved
:
Tuesday, March 04, 2025 at 11:30:10 PM
CAS
classification
:
[_separable]
ode:=(-x^2+1)*diff(z(x),x)-x*z(x) = a*x*z(x)^2; dsolve(ode,z(x), singsol=all);
ode=(1-x^2)*D[z[x],x]-x*z[x]==a*x*z[x]^2; ic={}; DSolve[{ode,ic},z[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") z = Function("z") ode = Eq(-a*x*z(x)**2 - x*z(x) + (1 - x**2)*Derivative(z(x), x),0) ics = {} dsolve(ode,func=z(x),ics=ics)