Internal
problem
ID
[12717]
Book
:
Handbook
of
exact
solutions
for
ordinary
differential
equations.
By
Polyanin
and
Zaitsev.
Second
edition
Section
:
Chapter
2,
Second-Order
Differential
Equations.
section
2.1.3-1.
Equations
with
exponential
functions
Problem
number
:
32
Date
solved
:
Wednesday, March 05, 2025 at 08:18:27 PM
CAS
classification
:
[[_2nd_order, _exact, _linear, _homogeneous]]
ode:=diff(diff(y(x),x),x)+(exp(lambda*x)*a+b*exp(x*mu)+c)*diff(y(x),x)+(a*lambda*exp(lambda*x)+b*mu*exp(x*mu))*y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+(a*Exp[\[Lambda]*x]+b*Exp[\[Mu]*x]+c)*D[y[x],x]+(a*\[Lambda]*Exp[\[Lambda]*x]+b*\[Mu]*Exp[\[Mu]*x])*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") cg = symbols("cg") mu = symbols("mu") y = Function("y") ode = Eq((a*cg*exp(cg*x) + b*mu*exp(mu*x))*y(x) + (a*exp(cg*x) + b*exp(mu*x) + c)*Derivative(y(x), x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
False