Internal
problem
ID
[14334]
Book
:
A
First
Course
in
Differential
Equations
by
J.
David
Logan.
Third
Edition.
Springer-Verlag,
NY.
2015.
Section
:
Chapter
1,
First
order
differential
equations.
Section
1.3.1
Separable
equations.
Exercises
page
26
Problem
number
:
4(b)
Date
solved
:
Thursday, October 02, 2025 at 09:31:42 AM
CAS
classification
:
[_separable]
ode:=diff(theta(t),t) = t*(t^2+1)^(1/2)*sec(theta(t)); dsolve(ode,theta(t), singsol=all);
ode=D[ theta[t],t]==t*Sqrt[1+t^2]*Sec[theta[t]]; ic={}; DSolve[{ode,ic},theta[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") theta = Function("theta") ode = Eq(-t*sqrt(t**2 + 1)/cos(theta(t)) + Derivative(theta(t), t),0) ics = {} dsolve(ode,func=theta(t),ics=ics)