Internal
problem
ID
[10276]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
267
Date
solved
:
Wednesday, March 05, 2025 at 08:56:53 AM
CAS
classification
:
[_exact, _Bernoulli]
ode:=y(x)*diff(y(x),x)*sin(x)^2+y(x)^2*cos(x)*sin(x)-1 = 0; dsolve(ode,y(x), singsol=all);
ode=y[x]*D[y[x],x]*Sin[x]^2+y[x]^2*Cos[x]*Sin[x]-1==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x)**2*sin(x)*cos(x) + y(x)*sin(x)**2*Derivative(y(x), x) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)