Internal
problem
ID
[13935]
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
19(b)
Date
solved
:
Monday, March 31, 2025 at 08:18:40 AM
CAS
classification
:
[[_2nd_order, _exact, _nonlinear], [_2nd_order, _with_linear_symmetries], [_2nd_order, _reducible, _mu_xy]]
ode:=x*diff(diff(y(x),x),x)/(1+y(x))+(y(x)*diff(y(x),x)-x*diff(y(x),x)^2+diff(y(x),x))/(1+y(x))^2 = x*sin(x); dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],{x,2}]/(1+y[x])+( y[x]*D[y[x],x]-x* D[y[x],x]^2+D[y[x],x])/( 1+y[x])^2==x*Sin[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*sin(x) + x*Derivative(y(x), (x, 2))/(y(x) + 1) + (-x*Derivative(y(x), x)**2 + y(x)*Derivative(y(x), x) + Derivative(y(x), x))/(y(x) + 1)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (sqrt((y(x) + 1)*(-4*x**2*y(x)*sin(x) - 4*x**2*sin(x) + 4*x**2*Derivative(y(x), (x, 2)) + y(x) + 1)) + y(x) + 1)/(2*x) cannot be solved by the factorable group method