Internal
problem
ID
[768]
Book
:
Differential
equations
and
linear
algebra,
3rd
ed.,
Edwards
and
Penney
Section
:
Section
1.6,
Substitution
methods
and
exact
equations.
Page
74
Problem
number
:
40
Date
solved
:
Saturday, March 29, 2025 at 10:21:17 PM
CAS
classification
:
[_exact]
ode:=exp(x)*sin(y(x))+tan(y(x))+(exp(x)*cos(y(x))+x*sec(y(x))^2)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=Exp[x]*Sin[y[x]]+Tan[y[x]]+(Exp[x]*Cos[y[x]]+x*Sec[y[x]]^2)*D[y[x],x] == 0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") y = Function("y") ode = Eq((x/cos(y(x))**2 + exp(x)*cos(y(x)))*Derivative(y(x), x) + exp(x)*sin(y(x)) + tan(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out