Internal
problem
ID
[12894]
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
54.
Change
of
independent
variable.
Page
127
Problem
number
:
Ex
1
Date
solved
:
Wednesday, March 05, 2025 at 08:50:45 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(y(x),x),x)+(2*exp(x)-1)*diff(y(x),x)+exp(2*x)*y(x) = exp(4*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+(2*Exp[x]-1)*D[y[x],x]+Exp[2*x]*y[x]==Exp[4*x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((2*exp(x) - 1)*Derivative(y(x), x) + y(x)*exp(2*x) - exp(4*x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-y(x)*exp(2*x) + exp(4*x) - Derivative(y(x), (x, 2)))/(2*exp(x) - 1) cannot be solved by the factorable group method