Internal
problem
ID
[14582]
Book
:
DIFFERENTIAL
EQUATIONS
by
Paul
Blanchard,
Robert
L.
Devaney,
Glen
R.
Hall.
4th
edition.
Brooks/Cole.
Boston,
USA.
2012
Section
:
Chapter
1.
First-Order
Differential
Equations.
Exercises
section
1.3
page
47
Problem
number
:
19
a(iii)
Date
solved
:
Thursday, March 13, 2025 at 03:37:11 AM
CAS
classification
:
[_quadrature]
ode:=diff(theta(t),t) = 11/10-9/10*cos(theta(t)); dsolve(ode,theta(t), singsol=all);
ode=D[ theta[t],t]==1-Cos[theta[t]]+(1+Cos[theta[t]])*(1/10); ic={}; DSolve[{ode,ic},theta[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") theta = Function("theta") ode = Eq(9*cos(theta(t))/10 + Derivative(theta(t), t) - 11/10,0) ics = {} dsolve(ode,func=theta(t),ics=ics)