Internal
problem
ID
[1631]
Book
:
Elementary
differential
equations
with
boundary
value
problems.
William
F.
Trench.
Brooks/Cole
2001
Section
:
Chapter
2,
First
order
equations.
Transformation
of
Nonlinear
Equations
into
Separable
Equations.
Section
2.4
Page
68
Problem
number
:
3
Date
solved
:
Saturday, March 29, 2025 at 11:08:51 PM
CAS
classification
:
[_Bernoulli]
ode:=x^2*diff(y(x),x)+2*y(x) = 2*exp(1/x)*y(x)^(1/2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+2*y[x]==2*Exp[1/x]*y[x]^(1/2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**2*Derivative(y(x), x) - 2*sqrt(y(x))*exp(1/x) + 2*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)