Meaningful statistic measure of data pairs
I have a dilemma.
I have pairwise data, (a,b), that represents some form of speed, whether it's miles/hour or megabits/second. Let's say that we have the following set of data from measuring the "speed" of the same "car" on two different "courses" A and B under different conditions (say weather), ignoring the unit for now, and with apologies for my notations.
{(a,b)} = {(1, 4), (1, 2), (1, 1), (2, 1), (4, 1)}
There are a few ways to interpret the data:
1) If one believes that the "car" runs faster on "course" A and calculates the average of speed-up (a/b):
average speedup = (1/4 + 1/2 + 1/1 + 2/1 + 4/1)/5 = 1.55
Voila, "course" A makes the "car" go 55% faster than "course" B!
2) If one believes that the "car" runs faster on "course" B and calculates the average of speed-up (b/a):
average speedup = (4/1 + 2/1 + 1/1 + 1/2 + 1/4)/5 = 1.55
Voila, "course" B makes the "car" go 55% faster than "course" A!
3) If one believes say CDF is the right way to compare the data set, then it will be something like:
A: 1, 1, 1, 2, 4
B: 1, 1, 1, 2, 4
Voila, "courses" A and B are more or less identical.
Obviously, all three interpretations mask out important details, but at the same time, I am not able to come up with a good statistical measure to describe this set of data. This is clearly just a toy example, but I am facing similar dilemmas interpreting real data.
Thanks!