Internal
problem
ID
[18552]
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
:
Saturday, February 22, 2025 at 09:27:10 PM
CAS
classification
:
[_quadrature]
Solve
Time used: 0.084 (sec)
Since the ode has the form \(y^{\prime }=f(z)\), then we only need to integrate \(f(z)\).
Summary of solutions found
`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`
Solving time : 0.004
(sec)
Leaf size : 16
dsolve(diff(y(z),z) = exp(z-diff(y(z),z)),y(z),singsol=all)
Solving time : 0.023
(sec)
Leaf size : 22
DSolve[{D[y[z],z]==Exp[z-D[y[z],z]],{}},y[z],z,IncludeSingularSolutions->True]
Solving time : 0.253
(sec)
Leaf size : 17
Python version: 3.13.1 (main, Dec 4 2024, 18:05:56) [GCC 14.2.1 20240910] Sympy version 1.13.3
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)
Eq(y(z), C1 + LambertW(exp(z))**2/2 + LambertW(exp(z)))