Internal
problem
ID
[5008]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
15
Problem
number
:
410
Date
solved
:
Tuesday, March 04, 2025 at 07:42:23 PM
CAS
classification
:
[_Bernoulli]
ode:=diff(y(x),x)*(a+cos(1/2*x)^2) = y(x)*tan(1/2*x)*(1+a+cos(1/2*x)^2-y(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]*(a+Cos[x/2]^2)==y[x]*Tan[x/2]*(1+a+Cos[x/2]^2-y[x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq((a + cos(x/2)**2)*Derivative(y(x), x) - (a - y(x) + cos(x/2)**2 + 1)*y(x)*tan(x/2),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out