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