Internal
problem
ID
[3669]
Book
:
Differential
equations
and
linear
algebra,
Stephen
W.
Goode
and
Scott
A
Annin.
Fourth
edition,
2015
Section
:
Chapter
1,
First-Order
Differential
Equations.
Section
1.8,
Change
of
Variables.
page
79
Problem
number
:
Problem
50
Date
solved
:
Tuesday, March 04, 2025 at 05:05:20 PM
CAS
classification
:
[_separable]
ode:=(1-3^(1/2))*diff(y(x),x)+y(x)*sec(x) = y(x)^(3^(1/2))*sec(x); dsolve(ode,y(x), singsol=all);
ode=(1-Sqrt[3])*D[y[x],x]+y[x]*Sec[x]==y[x]^Sqrt[3]*Sec[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x)/cos(x) - y(x)**(sqrt(3))/cos(x) + (1 - sqrt(3))*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)