Internal
problem
ID
[4209]
Book
:
Elementary
Differential
equations,
Chaundy,
1969
Section
:
Exercises
3,
page
60
Problem
number
:
5(a)
Date
solved
:
Sunday, March 30, 2025 at 02:42:57 AM
CAS
classification
:
[_linear]
ode:=(x^2+1)^(1/2)*diff(y(x),x)+y(x) = 2*x; dsolve(ode,y(x), singsol=all);
ode=Sqrt[1+x^2]*D[y[x],x]+y[x]==2*x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*x + sqrt(x**2 + 1)*Derivative(y(x), x) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)