Internal
problem
ID
[23108]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
4.
Linear
equations
of
the
first
order.
Exercise
4b
at
page
64
Problem
number
:
1
Date
solved
:
Thursday, October 02, 2025 at 09:22:03 PM
CAS
classification
:
[_linear]
ode:=x*diff(y(x),x)-2*y(x)*cos(x) = exp(x)*sin(x)^3; dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]-2*y[x]*Cos[x]==Exp[x]*Sin[x]^3; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*Derivative(y(x), x) - 2*y(x)*cos(x) - exp(x)*sin(x)**3,0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out