Internal
problem
ID
[5326]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
26
Problem
number
:
739
Date
solved
:
Sunday, March 30, 2025 at 07:58:39 AM
CAS
classification
:
[NONE]
ode:=(x+cos(x)*sec(y(x)))*diff(y(x),x)+tan(y(x))-y(x)*sin(x)*sec(y(x)) = 0; dsolve(ode,y(x), singsol=all);
ode=(x+Cos[x]*Sec[y[x]])D[y[x],x]+Tan[y[x]]-y[x] Sin[x]*Sec[y[x]]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((x + cos(x)/cos(y(x)))*Derivative(y(x), x) - y(x)*sin(x)/cos(y(x)) + tan(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out