Internal
problem
ID
[21590]
Book
:
The
Differential
Equations
Problem
Solver.
VOL.
I.
M.
Fogiel
director.
REA,
NY.
1978.
ISBN
78-63609
Section
:
Chapter
13.
The
Wronskian
and
linear
independence.
Page
283.
Problem
number
:
13-8
Date
solved
:
Thursday, October 02, 2025 at 07:58:46 PM
CAS
classification
:
[[_2nd_order, _missing_y]]
ode:=diff(diff(u(x),x),x)+(tan(x)-2*cos(x))*diff(u(x),x) = 0; dsolve(ode,u(x), singsol=all);
ode=D[u[x],{x,2}]+(Tan[x]-2*Cos[x])*D[u[x],x]==0; ic={}; DSolve[{ode,ic},u[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") u = Function("u") ode = Eq((-2*cos(x) + tan(x))*Derivative(u(x), x) + Derivative(u(x), (x, 2)),0) ics = {} dsolve(ode,func=u(x),ics=ics)