Internal
problem
ID
[3314]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
38,
page
173
Problem
number
:
6
Date
solved
:
Sunday, March 30, 2025 at 01:34:41 AM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
ode:=y(x)*(1+diff(y(x),x)^2) = 2*x*diff(y(x),x); dsolve(ode,y(x), singsol=all);
ode=(D[y[x],x]^2+1)*y[x]==2*D[y[x],x]*x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*x*Derivative(y(x), x) + (Derivative(y(x), x)**2 + 1)*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out