Internal
problem
ID
[6895]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
7
Problem
number
:
11
Date
solved
:
Tuesday, September 30, 2025 at 04:00:25 PM
CAS
classification
:
[_quadrature]
ode:=1+diff(y(x),x)^2 = (x+a)^2/(2*a*x+x^2); dsolve(ode,y(x), singsol=all);
ode=1+(D[y[x],x])^2==(x+a)^2/(x^2+2*a*x); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-(a + x)**2/(2*a*x + x**2) + Derivative(y(x), x)**2 + 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)