Login
📚 Differential Equations for Engineers
Chapters ▾
⇩ Download ▾

1.10 Exercises

These are homework exercises to accompany Libl's "Differential Equations for Engineering" Textmap. This is a textbook targeted for a one semester first course on differential equations, aimed at engineering students. Prerequisite for the course is the basic calculus sequence.

1.1: Integrals as solutions

1.2: Slope fields

1.3: Separable Equations

1.4: Linear equations and the integrating factor

In the exercises, feel free to leave answer as a definite integral if a closed form solution cannot be found. If you can find a closed form solution, you should give that.

1.5: Substitution

Hint: Answers need not always be in closed form.

1.6: Autonomous equations

1.7: Numerical methods: Euler’s method

There is a simple way to improve Euler’s method to make it a second order method by doing just one extra step. Consider dydx=f(x,y), y(x0)=y0, and a step size h. What we do is to pretend we compute the next step as in Euler, that is, we start with (xi,yi), we compute a slope k1=f(xi,yi), and then look at the point (xi+h,yi+k1h). Instead of letting our new point be (xi+h,yi+k1h), we compute the slope at that point, call it k2, and then take the average of k1 and k2, hoping that the average is going to be closer to the actual slope on the interval from xi to xi+h. And we are correct, if we halve the step, the error should go down by a factor of 22=4. To summarize, the setup is the same as for regular Euler, except the computation of yi+1 and xi+1.

k 1 = f ( x i , y i ) , x i + 1 = x i + h , k 2 = f ( x i + h , y i + k 1 h ) , y i + 1 = y i + k 1 + k 2 2 h .

1.8 Exact Equations

1.9: First Order Linear PDE

Adapted from Differential Equations for Engineers by Jiří Lebl (Oklahoma State University), hosted on LibreTexts (math.libretexts.org) and licensed under CC BY-SA 4.0. Changes were made. License: CC-BY-SA-4.0.