Internal
problem
ID
[18490]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
32.
Problems
at
page
89
Problem
number
:
4
Date
solved
:
Monday, March 31, 2025 at 05:37:25 PM
CAS
classification
:
[_quadrature]
Time used: 0.100 (sec)
Solve
Since the ode has the form
Summary of solutions found
ode:=diff(y(z),z) = exp(z-diff(y(z),z)); dsolve(ode,y(z), singsol=all);
Maple trace
Methods for first order ODEs: -> Solving 1st order ODE of high degree, 1st attempt trying 1st order WeierstrassP solution for high degree ODE trying 1st order WeierstrassPPrime solution for high degree ODE trying 1st order JacobiSN solution for high degree ODE trying 1st order ODE linearizable_by_differentiation trying differential order: 1; missing variables <- differential order: 1; missing y(x) successful
Maple step by step
ode=D[y[z],z]==Exp[z-D[y[z],z]]; ic={}; DSolve[{ode,ic},y[z],z,IncludeSingularSolutions->True]
from sympy import * z = symbols("z") y = Function("y") ode = Eq(-exp(z - Derivative(y(z), z)) + Derivative(y(z), z),0) ics = {} dsolve(ode,func=y(z),ics=ics)