Internal
problem
ID
[5332]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
1.
THE
DIFFERENTIAL
EQUATION
IS
OF
FIRST
ORDER
AND
OF
FIRST
DEGREE,
page
223
Problem
number
:
722
Date
solved
:
Tuesday, September 30, 2025 at 12:30:33 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=(1+a*(x+y(x)))^n*diff(y(x),x)+a*(x+y(x))^n = 0; dsolve(ode,y(x), singsol=all);
ode=(1+a*(x+y[x]))^n*D[y[x],x]+a*(x+y[x])^n==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") n = symbols("n") y = Function("y") ode = Eq(a*(x + y(x))**n + (a*(x + y(x)) + 1)**n*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)