Internal
problem
ID
[1796]
Book
:
Elementary
differential
equations
with
boundary
value
problems.
William
F.
Trench.
Brooks/Cole
2001
Section
:
Chapter
5
linear
second
order
equations.
Section
5.6
Reduction
or
order.
Page
253
Problem
number
:
38
part
(e)
Date
solved
:
Tuesday, September 30, 2025 at 05:19:26 AM
CAS
classification
:
[_quadrature]
ode:=diff(y(x),x)+y(x)^2+14*y(x)+50 = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+y[x]^2+14*y[x]+50==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x)**2 + 14*y(x) + Derivative(y(x), x) + 50,0) ics = {} dsolve(ode,func=y(x),ics=ics)