Internal
problem
ID
[11054]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
2,
linear
second
order
Problem
number
:
1063
Date
solved
:
Wednesday, March 05, 2025 at 01:39:29 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(3*x) = 0; dsolve(ode,y(x), singsol=all);
ode=-E^(3*x) + E^(2*x)*y[x] - (1 + 2*E^x)*D[y[x],x] + D[y[x],{x,2}] == 0; 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(3*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(3*x) + Derivative(y(x), (x, 2)))/(2*exp(x) + 1) cannot be solved by the factorable group method