Internal
problem
ID
[13885]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
2,
First
Order
Equations.
Problems
page
149
Problem
number
:
Problem
1(i)
Date
solved
:
Monday, March 31, 2025 at 08:16:18 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=diff(y(x),x) = ln(x*y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Log[x*y[x]]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-log(x*y(x)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
IndexError : Index out of range: a[1]