Internal
problem
ID
[7545]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Review
problems.
page
79
Problem
number
:
11
Date
solved
:
Tuesday, September 30, 2025 at 04:47:04 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=diff(x(t),t) = 1+cos(t-x(t))^2; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==1+Cos[t-x[t]]^2; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-cos(t - x(t))**2 + Derivative(x(t), t) - 1,0) ics = {} dsolve(ode,func=x(t),ics=ics)
Timed Out