Internal
problem
ID
[16013]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Exercises
2.5,
page
64
Problem
number
:
15
Date
solved
:
Thursday, March 13, 2025 at 07:13:39 AM
CAS
classification
:
[_separable]
ode:=sin(2*t)/cos(2*y(t))+ln(y(t))/ln(t)*diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=( Sin[2*t]/Cos[2*y[t]] )+( Log[y[t]]/Log[t] )*D[y[t],t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(sin(2*t)/cos(2*y(t)) + log(y(t))*Derivative(y(t), t)/log(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)