Internal
problem
ID
[2823]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
4.
Qualitative
theory
of
differential
equations.
Section
4.6
(Qualitative
properties
of
orbits).
Page
417
Problem
number
:
11
Date
solved
:
Sunday, March 30, 2025 at 12:33:09 AM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
ode:=diff(diff(z(t),t),t)+z(t)/(1+z(t)^2) = 0; dsolve(ode,z(t), singsol=all);
ode=D[z[t],{t,2}]+z[t]/(1+z[t]^2)==0; ic={}; DSolve[{ode,ic},z[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") z = Function("z") ode = Eq(Derivative(z(t), (t, 2)) + z(t)/(z(t)**2 + 1),0) ics = {} dsolve(ode,func=z(t),ics=ics)
Timed Out