Internal
problem
ID
[10340]
Book
:
First
order
enumerated
odes
Section
:
section
1
Problem
number
:
70
Date
solved
:
Tuesday, September 30, 2025 at 07:22:21 PM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(x)]`]]
ode:=diff(y(x),x) = 5*exp(x^2+20*y(x))+sin(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==5*Exp[x^2+20*y[x]]+Sin[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-5*exp(x**2 + 20*y(x)) - sin(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out