Euler's Method Riemann Sums Fundamental Theorem of Calculus Modeling
The objective of this activity is to determine the relationship between Euler's Method and Riemann Sums approximations for scenarios involving accumlated change.
A boat departs from a dock on an island, heading towards open water. The boat speeds up at first, but over time slows down. After about 4 hours, the boat begins to quickly return to the dock but comes to an abrupt stop when it crashes into some rocks.
The rate at which the boat travels from the dock over the first 4.5 hours, in miles per hour, is
.
Use Euler's Method with and to estimate how far the boat is from the dock.
Euler's method can be completed by hand or using technology. A script can be implemented in Python app.
Load the python script onto your calculator.
After 4.5 hours, the boat is 89.0668 miles away from the dock.
The graph of is shown below.
Location | Description | Context |
---|---|---|
t = 0 to around t = 2.5 | The graph is positive and increasing | The boat is moving away from the dock and accelerating. |
Around t = 2.5 to around t = 4 | The graph is positive but decreasing | The boat is still moving away from the dock but is slowing down. |
Around t = 4 to t = 4.5 | The graph is negative and decreasing | The boat is heading back towards the dock and speeding up. |
t = 4.5 and on | The graph has a horizontal line of y = 0 | The boat is stopped. It hit the rocks. |
Left-side rectangles can be drawn by hand or using technology. A script can be implemented in Python app.
Load the python script onto your calculator.
The width of each rectangle is . The height of each rectangle is . Thus the units for the area are . In other words, the area of the rectangles represent the change in the boat's distance from the dock.
Rectangle | Width | Height | Area |
---|---|---|---|
1 | 0.5 | 0 | 0 |
2 | 0.5 | 3.463 | 1.732 |
3 | 0.5 | 12.786 | 6.393 |
4 | 0.5 | 25.015 | 12.508 |
5 | 0.5 | 35.998 | 18 |
6 | 0.5 | 41.374 | 20.687 |
7 | 0.5 | 37.653 | 18.827 |
8 | 0.5 | 23.169 | 11.585 |
9 | 0.5 | -1.325 | -0.663 |
The change in the boat's distance from the dock is 89.067 miles. That is, the boat is 89.067 miles away from the dock. This is the same value obtained from Euler's Method with .
To determine the total distance traveled, we consider the absolute value of the height of each rectangle.
The boat traveled a total distance of 90.392 miles before hitting the rocks.
From the same dock on the island, a jet ski heads towards open waters. Initially, it travels at a rate of 10 miles per hour. However, the jet ski malfunctions and continues to accelerate. Thirty minutes later, it is traveling at a rate of 60 miles per hour and needs to be rescued by the Coast Guard. The Coast Guard is stationed on the mainland 20 miles from the island.
The speed of the jet ski increases linearly and can be modeled by the differential equation
Left-side rectangles can be drawn by hand or using technology. A script can be implemented in Python app.
Load the python script onto your calculator.
The jet ski is approximately 15 miles away from the dock after 30 minutes.
The general solutions for is . Using the initial conditions (0,20)
We have the particular solution .
J(0) represents the distance that the jet ski is from the mainland at time 0. This is when the jet ski is at the dock. J(0.5) represents the distance that the jet ski is from the mainland at time 0.5. The difference between these two values represents how far the jet ski has traveled from the dock over the time interval.
The answers are similar. In question 1, we are estimated the change in distance using left-side rectangles. However, because the graph of the differential equation is increasing, the left-side rectangles are an underestimate. In question 3, we have the solution function. We can find the actual values of J(t) and the difference between two values. Thus question 3 is giving the actual distance that the jet ski is from the dock at the end of the time interval.