Internal
problem
ID
[7512]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Section
2.6,
Substitutions
and
Transformations.
Exercises.
page
76
Problem
number
:
13
Date
solved
:
Tuesday, September 30, 2025 at 04:40:59 PM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
ode:=diff(x(t),t) = (x(t)^2+t*(t^2+x(t)^2)^(1/2))/x(t)/t; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==( x[t]^2 + t* Sqrt[t^2+x[t]^2] )/(t*x[t]) ; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(Derivative(x(t), t) - (t*sqrt(t**2 + x(t)**2) + x(t)**2)/(t*x(t)),0) ics = {} dsolve(ode,func=x(t),ics=ics)
TypeError : cannot determine truth value of Relational: 2*t**2 < 2*C1*t**2