1.58 problem 80

Internal problem ID [14102]

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: 80.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_quadrature]

\[ \boxed {y^{\prime }=\sin \left (x \right )^{4}} \] With initial conditions \begin {align*} [y \left (0\right ) = 0] \end {align*}

Solution by Maple

Time used: 0.047 (sec). Leaf size: 20

dsolve([diff(y(x),x)=sin(x)^4,y(0) = 0],y(x), singsol=all)
 

\[ y \left (x \right ) = \frac {3 x}{8}+\frac {\sin \left (4 x \right )}{32}-\frac {\sin \left (2 x \right )}{4} \]

Solution by Mathematica

Time used: 0.012 (sec). Leaf size: 23

DSolve[{y'[x]==Sin[x]^4,{y[0]==0}},y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to \frac {1}{32} (12 x-8 \sin (2 x)+\sin (4 x)) \]