Internal
problem
ID
[2852]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
5,
page
21
Problem
number
:
12
Date
solved
:
Tuesday, March 04, 2025 at 02:51:16 PM
CAS
classification
:
[_quadrature]
ode:=diff(x(t),t) = 1-sin(2*t); dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==1-Sin[2*t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(sin(2*t) + Derivative(x(t), t) - 1,0) ics = {} dsolve(ode,func=x(t),ics=ics)