Internal
problem
ID
[2330]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.4.
Page
24
Problem
number
:
15
Date
solved
:
Tuesday, March 04, 2025 at 01:55:16 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
With initial conditions
ode:=t*diff(y(t),t) = y(t)+(t^2+y(t)^2)^(1/2); ic:=y(1) = 0; dsolve([ode,ic],y(t), singsol=all);
ode=t*D[y[t],t]==y[t]+Sqrt[t^2+y[t]^2]; ic=y[1]==0; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t*Derivative(y(t), t) - sqrt(t**2 + y(t)**2) - y(t),0) ics = {y(1): 0} dsolve(ode,func=y(t),ics=ics)