Internal
problem
ID
[6528]
Book
:
Schaums
Outline
Differential
Equations,
4th
edition.
Bronson
and
Costa.
McGraw
Hill
2014
Section
:
Chapter
12.
VARIATION
OF
PARAMETERS.
page
104
Problem
number
:
Problem
12.2
Date
solved
:
Sunday, March 30, 2025 at 11:06:33 AM
CAS
classification
:
[[_3rd_order, _missing_y]]
ode:=diff(diff(diff(y(x),x),x),x)-3*diff(diff(y(x),x),x)+2*diff(y(x),x) = exp(x)/(1+exp(-x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]-3*D[y[x],{x,2}]+2*D[y[x],x]==Exp[x]/(1+Exp[-x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(2*Derivative(y(x), x) - 3*Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 3)) - exp(x)/(1 + exp(-x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (exp(2*x) + 3*exp(x)*Derivative(y(x), (x, 2)) - exp(x)*Derivative(y(x), (x, 3)) + 3*Derivative(y(x), (x, 2)) - Derivative(y(x), (x, 3)))/(2*(exp(x) + 1)) cannot be solved by the factorable group method