Learning objectives:
- Can calculate velocity and acceleration from position measurements in time
- Can account for the errors in the position measurements
Problem: Engineers usually donβt have a perfect function of position over time, if we do, nothing can stop us from conquering the world HAHAHA! Instead we have a a table of position over time, we can use finite differences to calculate velocity and acceleration.
Finite Differences
- First Order Forward Finite Difference
- First Order Backward Finite Difference
- Second Order Centered Finite Difference
As the denominator is larger, Second Order Centered Finite Difference is more accurate! Want to dive more? Learn about Taylor Series!
Treating Data Set
To not make arts in engineering, we should treat the data using moving average:
To gain more accurate data, you can use multiple moving averages or higher order finite differences. However, note that using them means you will loose data points.