Internal
problem
ID
[8792]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
79
Date
solved
:
Sunday, March 30, 2025 at 01:36:02 PM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = y(x)*(1+a^2*x/(a^2*(x^2+1))^(1/2))/(a^2*(x^2+1))^(1/2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]== y[x]*(1+ a^2*x/Sqrt[a^2*(x^2+1)])/Sqrt[a^2*(x^2+1)]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(Derivative(y(x), x) - (a**2*x/sqrt(a**2*(x**2 + 1)) + 1)*y(x)/sqrt(a**2*(x**2 + 1)),0) ics = {} dsolve(ode,func=y(x),ics=ics)