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