Internal
problem
ID
[15734]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
1.
Introduction
to
Differential
Equations.
Exercises
1.1,
page
10
Problem
number
:
32
Date
solved
:
Monday, March 31, 2025 at 01:46:33 PM
CAS
classification
:
[_exact, [_1st_order, `_with_symmetry_[F(x),G(y)]`], [_Abel, `2nd type`, `class A`]]
ode:=y(t)*cos(t)+(2*y(t)+sin(t))*diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=y[t]*Cos[t]+(2*y[t]+Sin[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((2*y(t) + sin(t))*Derivative(y(t), t) + y(t)*cos(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)