Internal
problem
ID
[10076]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
78
Date
solved
:
Tuesday, September 30, 2025 at 06:52:06 PM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
ode:=diff(y(x),x)*y(x)/(1+1/2*(1+diff(y(x),x)^2)^(1/2)) = -x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]*y[x]/(1+1/2*Sqrt[1+(D[y[x],x])^2])==-x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x + y(x)*Derivative(y(x), x)/(sqrt(Derivative(y(x), x)**2 + 1)/2 + 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out