Internal
problem
ID
[18988]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Chapter
II.
Equations
of
first
order
and
first
degree.
Exercise
II
(B)
at
page
9
Problem
number
:
11
Date
solved
:
Thursday, March 13, 2025 at 01:17:03 PM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = (sin(x)+x*cos(x))/y(x)/(2*ln(y(x))+1); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]== (Sin[x]+x*Cos[x])/( y[x]*(2*Log[y[x]]+1)); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-(x*cos(x) + sin(x))/((2*log(y(x)) + 1)*y(x)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)