Internal
problem
ID
[4078]
Book
:
Differential
equations,
Shepley
L.
Ross,
1964
Section
:
2.4,
page
55
Problem
number
:
2
Date
solved
:
Sunday, March 30, 2025 at 02:16:29 AM
CAS
classification
:
[[_1st_order, _with_exponential_symmetries]]
ode:=2*x*tan(y(x))+(x-x^2*tan(y(x)))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(2*x*Tan[y[x]])+(x-x^2*Tan[y[x]])*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(2*x*tan(y(x)) + (-x**2*tan(y(x)) + x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
TypeError : NoneType object is not subscriptable