Internal
problem
ID
[19837]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
29.
Problems
at
page
81
Problem
number
:
8
Date
solved
:
Thursday, October 02, 2025 at 04:47:28 PM
CAS
classification
:
[_exact]
ode:=(T(t)+1/(t^2-T(t)^2)^(1/2))*diff(T(t),t) = T(t)/t/(t^2-T(t)^2)^(1/2)-t; dsolve(ode,T(t), singsol=all);
ode=(T[t]+1/Sqrt[t^2-T[t]^2])*D[T[t],t]== T[t]/(t*Sqrt[t^2-T[t]^2])-t; ic={}; DSolve[{ode,ic},T[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") T = Function("T") ode = Eq(t + (T(t) + 1/sqrt(t**2 - T(t)**2))*Derivative(T(t), t) - T(t)/(t*sqrt(t**2 - T(t)**2)),0) ics = {} dsolve(ode,func=T(t),ics=ics)
Timed Out