Skip to main content

Section 2.1 Modeling with Systems

Exercises Exercises

Supplemental HW Problems.

ODE = Ordinary Differential Equation;
IVP = Initial Value Problem
1.
Hooke’s law says that the force exerted by a spring on a mass is proportional to the distance from the mass/spring system’s resting position.
  1. Find an equation that models this, using \(k\) to indicate the constant for the spring’s force and \(x\) for the position of the mass from rest.
  2. Use \(F = ma\) to find a second order ODE that models a frictionless mass/spring system. If \(m\) is for mass, what does \(a\) stand for here? How is that related to the mass’s position?
2.
The world is more complicated than just the force of the spring, however. There’s friction, both internal (the spring itself) and external (the friction between the mass and the air, or the surface the mass rests upon). Friction always acts opposite to the direction of motion, with a force that is proportional to the velocity.
  1. Write the frictional force that models this. Use \(c\) as the frictional constant (combining all the frictional forces).
  2. Add this force to the ODE you found in exercise 1 above.
3.
If \(k\) is the spring constant (involving the force the spring exerts on the mass) and \(c\) is the damping constant (involving the frictional or damping forces):
Show that \(mx'' + cx’ +kx = 0\) when there is no external force applied to the spring/mass system with mass \(m\text{.}\)
4.
Computers perform matrix (linear) calculations VERY quickly, to the extent that we generally try to express complicated mathematics with matrices whenever possible. We’ll convert our 2nd order differential equation \(mx'' + cx’ +kx = 0\) into a system of 2 first-order differential equations, by letting \(v(t)\) stand for velocity, which means \(v = x’\text{.}\)
If our first equation in the system is \(x’ = v\text{,}\) solve the ODE in the problem above for \(v'.\) Remember that we want a system of equations that looks like this:
\begin{align*} x’ \amp = f(x, v)\\ v’ \amp = g(x, v) \end{align*}
Where \(f\) and \(g\) are both functions of our two variables \(x\) and \(v.\) A good first step is to divide both sides of the 2nd-order ODE by \(m\text{.}\)
5.
Now convert the following situations into: first, a 2nd-order ODE; second, a system of two 1st-order ODEs:
  1. Find equations for a spring-mass system with \(m = 1, c = 0\text{,}\) and \(k = 9\text{.}\)
  2. Now do the same for the damped system with \(m = 1, c = 2\text{,}\) and \(k = 26\text{.}\)
  3. Finally, do the same for the damped system with \(m = 2, c = 10\text{,}\) and \(k = 12\text{.}\)