Internal
problem
ID
[5331]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Various
26
Problem
number
:
746
Date
solved
:
Sunday, March 30, 2025 at 07:59:40 AM
CAS
classification
:
[_exact]
ode:=(sinh(x)+x*cosh(y(x)))*diff(y(x),x)+y(x)*cosh(x)+sinh(y(x)) = 0; dsolve(ode,y(x), singsol=all);
ode=(Sinh[x]+x*Cosh[y[x]])*D[y[x],x]+y[x]*Cosh[x]+Sinh[y[x]]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((x*cosh(y(x)) + sinh(x))*Derivative(y(x), x) + y(x)*cosh(x) + sinh(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out