1.1 problem 0

1.1.1 Solving as quadrature ode
1.1.2 Maple step by step solution

Internal problem ID [3264]
Internal file name [OUTPUT/2756_Sunday_June_05_2022_08_40_07_AM_86643197/index.tex]

Book: Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section: Various 1
Problem number: 0.
ODE order: 1.
ODE degree: 1.

The type(s) of ODE detected by this program : "quadrature"

Maple gives the following as the ode type

[_quadrature]

\[ \boxed {y^{\prime }=a f \left (x \right )} \]

1.1.1 Solving as quadrature ode

Integrating both sides gives \begin {align*} y = \int a f \left (x \right )d x +c_{1} \end {align*}

Summary

The solution(s) found are the following \begin{align*} \tag{1} y &= \int a f \left (x \right )d x +c_{1} \\ \end{align*}

Verification of solutions

\[ y = \int a f \left (x \right )d x +c_{1} \] Verified OK.

1.1.2 Maple step by step solution

\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & y^{\prime }=a f \left (x \right ) \\ \bullet & {} & \textrm {Highest derivative means the order of the ODE is}\hspace {3pt} 1 \\ {} & {} & y^{\prime } \\ \bullet & {} & \textrm {Integrate both sides with respect to}\hspace {3pt} x \\ {} & {} & \int y^{\prime }d x =\int a f \left (x \right )d x +c_{1} \\ \bullet & {} & \textrm {Evaluate integral}\hspace {3pt} \\ {} & {} & y=\int a f \left (x \right )d x +c_{1} \\ \bullet & {} & \textrm {Solve for}\hspace {3pt} y \\ {} & {} & y=\int a f \left (x \right )d x +c_{1} \end {array} \]

Maple trace

`Methods for first order ODEs: 
--- Trying classification methods --- 
trying a quadrature 
<- quadrature successful`
 

Solution by Maple

Time used: 0.0 (sec). Leaf size: 12

dsolve(diff(y(x),x) = a*f(x),y(x), singsol=all)
 

\[ y \left (x \right ) = a \left (\int f \left (x \right )d x \right )+c_{1} \]

Solution by Mathematica

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

DSolve[y'[x]==a*f[x],y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to \int _1^xa f(K[1])dK[1]+c_1 \]