Internal
problem
ID
[11394]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
81
Date
solved
:
Sunday, October 12, 2025 at 01:37:07 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=diff(y(x),x)+2*tan(y(x))*tan(x)-1 = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] + 2*Tan[y[x]]*Tan[x] - 1==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(2*tan(x)*tan(y(x)) + Derivative(y(x), x) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE 2*tan(x)*tan(y(x)) + Derivative(y(x), x) - 1 cannot be solved by the lie group method