Internal
problem
ID
[16100]
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
:
35
Date
solved
:
Monday, March 31, 2025 at 02:43:14 PM
CAS
classification
:
[_exact]
With initial conditions
ode:=y(t)/t+ln(y(t))+(t/y(t)+ln(t))*diff(y(t),t) = 0; ic:=y(1) = 1; dsolve([ode,ic],y(t), singsol=all);
ode=(y[t]/t+Log[y[t]])+(t/y[t]+Log[t])*D[y[t],t]==0; ic={y[1]==1}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq((t/y(t) + log(t))*Derivative(y(t), t) + log(y(t)) + y(t)/t,0) ics = {y(1): 1} dsolve(ode,func=y(t),ics=ics)
Timed Out