Internal
problem
ID
[22038]
Book
:
Differential
Equations
By
Kaj
L.
Nielsen.
Second
edition
1966.
Barnes
and
nobel.
66-28306
Section
:
Chapter
XV.
The
Laplace
Transform.
Ex.
XXIII
at
page
251
Problem
number
:
5
(b)
Date
solved
:
Thursday, October 02, 2025 at 08:21:53 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
With initial conditions
ode:=diff(diff(y(x),x),x)+3*y(x) = 0; ic:=[y(0) = -2, y(1) = (1-3*exp(3))/exp(3)]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=D[y[x],{x,2}]+3*y[x]==0; ic={y[0]==-2,y[1]==(1-3*Exp[3])/Exp[3]}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(3*y(x) + Derivative(y(x), (x, 2)),0) ics = {y(0): -2, y(1): (1 - 3*exp(3))*exp(-3)} dsolve(ode,func=y(x),ics=ics)