Internal
problem
ID
[8691]
Book
:
Ordinary
differential
equations
and
calculus
of
variations.
Makarets
and
Reshetnyak.
Wold
Scientific.
Singapore.
1995
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.1
Separable
equations
problems.
page
7
Problem
number
:
24
Date
solved
:
Tuesday, September 30, 2025 at 05:41:32 PM
CAS
classification
:
[_separable]
ode:=diff(z(x),x) = 10^(x+z(x)); dsolve(ode,z(x), singsol=all);
ode=D[z[x],x]==10^(x+z[x]); ic={}; DSolve[{ode,ic},z[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") z = Function("z") ode = Eq(-10**(x + z(x)) + Derivative(z(x), x),0) ics = {} dsolve(ode,func=z(x),ics=ics)