Internal
problem
ID
[4722]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
5
Problem
number
:
120
Date
solved
:
Friday, March 14, 2025 at 01:27:44 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=diff(y(x),x) = tan(x)*(tan(y(x))+sec(x)*sec(y(x))); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==Tan[x] (Tan[y[x]]+ Sec[x] Sec[y[x]]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-tan(y(x)) - 1/(cos(x)*cos(y(x))))*tan(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)