Internal
problem
ID
[13904]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
4,
Second
and
Higher
Order
Linear
Differential
Equations.
Problems
page
221
Problem
number
:
Problem
2(c)
Date
solved
:
Monday, March 31, 2025 at 08:17:35 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=diff(y(x),x)^2+x*y(x)*diff(y(x),x)^2 = ln(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]^2+y[x]*D[y[x],x]^2*x==Log[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*y(x)*Derivative(y(x), x)**2 - log(x) + Derivative(y(x), x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out