Internal
problem
ID
[1674]
Book
:
Elementary
differential
equations
with
boundary
value
problems.
William
F.
Trench.
Brooks/Cole
2001
Section
:
Chapter
2,
First
order
equations.
Transformation
of
Nonlinear
Equations
into
Separable
Equations.
Section
2.4
Page
68
Problem
number
:
49
Date
solved
:
Saturday, March 29, 2025 at 11:26:32 PM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(y)]`], _Riccati]
ode:=x*ln(x)^2*diff(y(x),x) = -4*ln(x)^2+ln(x)*y(x)+y(x)^2; dsolve(ode,y(x), singsol=all);
ode=x*(Log[x])^2*D[y[x],x]==-4*(Log[x])^2+y[x]*Log[x]+y[x]^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*log(x)**2*Derivative(y(x), x) - y(x)**2 - y(x)*log(x) + 4*log(x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - y(x)**2/(x*log(x)**2) - y(x)/(x*log(x)) + 4/x cannot be solved by the factorable group method