Internal
problem
ID
[14088]
Book
:
DIFFERENTIAL
and
INTEGRAL
CALCULUS.
VOL
I.
by
N.
PISKUNOV.
MIR
PUBLISHERS,
Moscow
1969.
Section
:
Chapter
8.
Differential
equations.
Exercises
page
595
Problem
number
:
14
Date
solved
:
Wednesday, March 05, 2025 at 10:30:53 PM
CAS
classification
:
[_separable]
ode:=z(t)-(-a^2+t^2)*diff(z(t),t) = 0; dsolve(ode,z(t), singsol=all);
ode=z[t]-(t^2-a^2)*D[z[t],t]==0; ic={}; DSolve[{ode,ic},z[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") a = symbols("a") z = Function("z") ode = Eq(-(-a**2 + t**2)*Derivative(z(t), t) + z(t),0) ics = {} dsolve(ode,func=z(t),ics=ics)