Internal
problem
ID
[6212]
Book
:
Mathematical
Methods
in
the
Physical
Sciences.
third
edition.
Mary
L.
Boas.
John
Wiley.
2006
Section
:
Chapter
8,
Ordinary
differential
equations.
Section
13.
Miscellaneous
problems.
page
466
Problem
number
:
5
Date
solved
:
Wednesday, March 05, 2025 at 12:24:45 AM
CAS
classification
:
[_exact, [_1st_order, `_with_symmetry_[F(x),G(x)]`], [_Abel, `2nd type`, `class A`]]
ode:=2*x-y(x)*sin(2*x) = (sin(x)^2-2*y(x))*diff(y(x),x); dsolve(ode,y(x), singsol=all);
ode=2*x-y[x]*Sin[2*x]==(Sin[x]^2-2*y[x])*D[y[x],x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(2*x - (-2*y(x) + sin(x)**2)*Derivative(y(x), x) - y(x)*sin(2*x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out