Internal
problem
ID
[19968]
Book
:
A
short
course
on
differential
equations.
By
Donald
Francis
Campbell.
Maxmillan
company.
London.
1907
Section
:
Chapter
IV.
Ordinary
linear
differential
equations
with
constant
coefficients.
Exercises
at
page
58
Problem
number
:
20
Date
solved
:
Thursday, October 02, 2025 at 05:04:35 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=e*diff(diff(y(x),x),x) = P*(a-y(x)); dsolve(ode,y(x), singsol=all);
ode=e*D[y[x],{x,2}]==P*(a-y[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") P = symbols("P") a = symbols("a") e = symbols("e") y = Function("y") ode = Eq(-P*(a - y(x)) + e*Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)