Internal
problem
ID
[3681]
Book
:
Differential
equations
and
linear
algebra,
Stephen
W.
Goode
and
Scott
A
Annin.
Fourth
edition,
2015
Section
:
Chapter
1,
First-Order
Differential
Equations.
Section
1.8,
Change
of
Variables.
page
79
Problem
number
:
Problem
64
Date
solved
:
Sunday, March 30, 2025 at 02:05:06 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]
ode:=diff(y(x),x)/y(x)+p(x)*ln(y(x)) = q(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]/y[x]+p[x]*Log[y[x]]==q[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") p = Function("p") q = Function("q") ode = Eq(p(x)*log(y(x)) - q(x) + Derivative(y(x), x)/y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -(-p(x)*log(y(x)) + q(x))*y(x) + Derivative(y(x), x) cannot be solved by the factorable group method