Internal
problem
ID
[13893]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
4,
Second
and
Higher
Order
Linear
Differential
Equations.
Problems
page
221
Problem
number
:
Problem
1(g)
Date
solved
:
Monday, March 31, 2025 at 08:16:35 AM
CAS
classification
:
[_linear]
ode:=diff(y(x),x)*cos(x)+y(x)*exp(x^2) = sinh(x); dsolve(ode,y(x), singsol=all);
ode=Cos[x]*D[y[x],x]+y[x]*Exp[x^2]==Sinh[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x)*exp(x**2) + cos(x)*Derivative(y(x), x) - sinh(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out