Internal
problem
ID
[4211]
Book
:
Elementary
Differential
equations,
Chaundy,
1969
Section
:
Exercises
3,
page
60
Problem
number
:
5(c)
Date
solved
:
Tuesday, March 04, 2025 at 05:56:09 PM
CAS
classification
:
[_linear]
ode:=((x+a)*(x+b))^(1/2)*(2*diff(y(x),x)-3)+y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=Sqrt[(x+a)*(x+b)]*(2*D[y[x],x]-3)+y[x]==0; 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))*(2*Derivative(y(x), x) - 3) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out