Instantaneous velocity calculation from position data

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 2K views
fog37
Messages
1,566
Reaction score
108
Hello Forum,
Given position and related time data, what is the most correct way to calculate the instantaneous speed? For example, given the data (x1, t1) , (x2, t2), (x3, t3) , (x4, t4), (x5, t5), is the instantaneous speed at time t3 given more correctly by

[tex]v(t_3) = \frac{(x_4-x_2)} {(t_4-t_2)}[/tex]
[tex]v(t_3) = \frac {(x3-x2) } {(t3-t2)}[/tex]
[tex]v(t_3) = \frac {(x4-x3)} {(t4-t3)}[/tex]

and why?

Thanks!
 
Physics news on Phys.org
Yes, differentiation is applicable when the position is given as a function of time. I will look into finite differences. My understanding is that there are different types of finite difference. I guess I will figure out which one is most appropriate for the calculation of the instantaneous speed. Any suggestion in the meantime?

Thanks
 
Differentiation is simply the rate of change of one variable with respect to another. It doesn't have to be position or velocity and it doesn't have to be with respect to time. In this case, you are interested in time rate of change, but derivatives are much more broadly applicable than that.

Anyway, you seem to have some sense of the relationship between derivatives and the quantity you want here. Assuming you understand that, then your next question should be about approximating derivatives when you have data at a discrete set of points in time. That is where finite differences come into play.
 
fog37 said:
I guess I will figure out which one is most appropriate for the calculation of the instantaneous speed.
My point is that you cannot say that one will be more appropriate than another. It depends on your sampling points as well as on how the velocity varies with time. I can come up with different situations where any of the given differences would be the best approximation.
 
  • Like
Likes   Reactions: nasu