Internal
problem
ID
[19964]
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
:
16
Date
solved
:
Thursday, October 02, 2025 at 05:04:31 PM
CAS
classification
:
[[_2nd_order, _quadrature]]
ode:=e*diff(diff(y(x),x),x) = 1/2*w*(1/4*L^2-x^2); dsolve(ode,y(x), singsol=all);
ode=e*D[y[x],{x,2}]==w/2*(L^2/4-x^2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") L = symbols("L") e = symbols("e") w = symbols("w") y = Function("y") ode = Eq(e*Derivative(y(x), (x, 2)) - w*(L**2/4 - x**2)/2,0) ics = {} dsolve(ode,func=y(x),ics=ics)