Internal
problem
ID
[18514]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
VII.
Linear
equations
of
order
higher
than
the
first.
section
56.
Problems
at
page
163
Problem
number
:
6
Date
solved
:
Monday, March 31, 2025 at 05:40:57 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(v(u),u),u)-6*diff(v(u),u)+13*v(u) = exp(-2*u); dsolve(ode,v(u), singsol=all);
ode=D[v[u],{u,2}]-6*D[v[u],u]+13*v[u]==Exp[-2*u]; ic={}; DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") v = Function("v") ode = Eq(13*v(u) - 6*Derivative(v(u), u) + Derivative(v(u), (u, 2)) - exp(-2*u),0) ics = {} dsolve(ode,func=v(u),ics=ics)