Internal
problem
ID
[8071]
Book
:
Differential
Equations:
Theory,
Technique,
and
Practice
by
George
Simmons,
Steven
Krantz.
McGraw-Hill
NY.
2007.
1st
Edition.
Section
:
Chapter
2.
Problems
for
Review
and
Discovery.
Problems
for
Discussion
and
Exploration.
Page
105
Problem
number
:
4
Date
solved
:
Sunday, March 30, 2025 at 12:42:07 PM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
ode:=diff(diff(y(x),x),x)+sin(y(x)) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+Sin[y[x]]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(sin(y(x)) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out