Internal
problem
ID
[18480]
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
:
Monday, March 31, 2025 at 05:36:20 PM
CAS
classification
:
[_exact]
Time used: 0.221 (sec)
Solve
To solve an ode of the form
We assume there exists a function
Hence
But since
If the above condition is satisfied, then the original ode is called exact. We still need to determine
Therefore
Comparing (1A) and (2A) shows that
The next step is to determine if the ODE is is exact or not. The ODE is exact when the following condition is satisfied
Using result found above gives
And
Since
Integrating (1) w.r.t.
Where
But equation (2) says that
Solving equation (5) for
Integrating the above w.r.t
Where
But since
Which simplifies to
Summary of solutions found
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);
Maple trace
Methods for first order ODEs: --- Trying classification methods --- trying homogeneous types: differential order: 1; looking for linear symmetries trying exact <- exact successful
Maple step by step
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