Internal
problem
ID
[19068]
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.
Misc
examples
on
chapter
II
at
page
25
Problem
number
:
22
Date
solved
:
Thursday, March 13, 2025 at 01:35:42 PM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = x*(2*ln(x)+1)/(sin(y(x))+y(x)*cos(y(x))); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==(x*(2*Log[x]+1))/(Sin[y[x]]+y[x]*Cos[y[x]]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*(2*log(x) + 1)/(y(x)*cos(y(x)) + sin(y(x))) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)