Internal
problem
ID
[18483]
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
32.
Problems
at
page
89
Problem
number
:
5
Date
solved
:
Thursday, March 13, 2025 at 12:06:24 PM
CAS
classification
:
[[_homogeneous, `class G`]]
ode:=(t^2+T(t))^(1/2) = diff(T(t),t); dsolve(ode,T(t), singsol=all);
ode=Sqrt[t^2+T[t]]==D[T[t],t]; ic={}; DSolve[{ode,ic},T[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") T = Function("T") ode = Eq(sqrt(t**2 + T(t)) - Derivative(T(t), t),0) ics = {} dsolve(ode,func=T(t),ics=ics)
NotImplementedError : The given ODE -sqrt(t**2 + T(t)) + Derivative(T(t), t) cannot be solved by the factorable group method