Internal
problem
ID
[5355]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
1.
THE
DIFFERENTIAL
EQUATION
IS
OF
FIRST
ORDER
AND
OF
FIRST
DEGREE,
page
223
Problem
number
:
751
Date
solved
:
Tuesday, September 30, 2025 at 12:35:58 PM
CAS
classification
:
[_separable]
ode:=diff(y(x),x)*(1+sinh(x))*sinh(y(x))+cosh(x)*(cosh(y(x))-1) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]*(1+Sinh[x])*Sinh[y[x]]+Cosh[x]*(Cosh[y[x]]-1)==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((sinh(x) + 1)*sinh(y(x))*Derivative(y(x), x) + (cosh(y(x)) - 1)*cosh(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)