Internal
problem
ID
[6679]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
9.
Equations
of
first
order
and
higher
degree.
Supplemetary
problems.
Page
65
Problem
number
:
30
Date
solved
:
Sunday, March 30, 2025 at 11:17:55 AM
CAS
classification
:
[_quadrature]
ode:=y(x) = 2*diff(y(x),x)+(1+diff(y(x),x)^2)^(1/2); dsolve(ode,y(x), singsol=all);
ode=y[x]==2*D[y[x],x]+Sqrt[1+D[y[x],x]^2]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-sqrt(Derivative(y(x), x)**2 + 1) + y(x) - 2*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)