Internal
problem
ID
[17427]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Review
exercises,
page
80
Problem
number
:
4
Date
solved
:
Thursday, October 02, 2025 at 02:20:41 PM
CAS
classification
:
[_separable]
ode:=diff(y(t),t) = exp(8*y(t))/t; dsolve(ode,y(t), singsol=all);
ode=D[y[t],t]==Exp[8*y[t]]/t; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(Derivative(y(t), t) - exp(8*y(t))/t,0) ics = {} dsolve(ode,func=y(t),ics=ics)