Internal
problem
ID
[12898]
Book
:
An
elementary
treatise
on
differential
equations
by
Abraham
Cohen.
DC
heath
publishers.
1906
Section
:
Chapter
VIII,
Linear
differential
equations
of
the
second
order.
Article
53.
Change
of
dependent
variable.
Page
125
Problem
number
:
Ex
5
Date
solved
:
Monday, March 31, 2025 at 07:23:56 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=sin(x)*diff(diff(y(x),x),x)+2*cos(x)*diff(y(x),x)+3*sin(x)*y(x) = exp(x); dsolve(ode,y(x), singsol=all);
ode=Sin[x]*D[y[x],{x,2}]+2*Cos[x]*D[y[x],x]+3*Sin[x]*y[x]==Exp[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(3*y(x)*sin(x) - exp(x) + sin(x)*Derivative(y(x), (x, 2)) + 2*cos(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -(-3*y(x)*sin(x) + exp(x) - sin(x)*Derivative(y(x), (x, 2)))/(2*cos(x)) + Derivative(y(x), x) cannot be solved by the factorable group method