44.1.33 problem 35

Internal problem ID [6908]
Book : A First Course in Differential Equations with Modeling Applications by Dennis G. Zill. 12 ed. Metric version. 2024. Cengage learning.
Section : Chapter 1. Introduction to differential equations. Exercises 1.1 at page 12
Problem number : 35
Date solved : Monday, January 27, 2025 at 02:34:43 PM
CAS classification : [[_2nd_order, _missing_x]]

\begin{align*} y^{\prime \prime }-5 y^{\prime }+6 y&=0 \end{align*}

Solution by Maple

Time used: 0.003 (sec). Leaf size: 17

dsolve(diff(y(x),x$2)-5*diff(y(x),x)+6*y(x)=0,y(x), singsol=all)
 
\[ y = {\mathrm e}^{2 x} c_{1} +{\mathrm e}^{3 x} c_{2} \]

Solution by Mathematica

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

DSolve[D[y[x],{x,2}]-5*D[y[x],x]+6*y[x]==0,y[x],x,IncludeSingularSolutions -> True]
 
\[ y(x)\to e^{2 x} \left (c_2 e^x+c_1\right ) \]