Internal
problem
ID
[15829]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Exercises
2.2,
page
39
Problem
number
:
7
Date
solved
:
Monday, March 31, 2025 at 01:57:17 PM
CAS
classification
:
[_separable]
ode:=4*sinh(4*y(x))*diff(y(x),x) = 6*cosh(3*x); dsolve(ode,y(x), singsol=all);
ode=4*Sinh[4*y[x]]*D[y[x],x]==6*Cosh[3*x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(4*sinh(4*y(x))*Derivative(y(x), x) - 6*cosh(3*x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out