Example: Car 1 goes from 0-60 in 6 seconds. Car 2 goes from 0-60 in 8 seconds. Car 3 goes from 0-60 in 9 seconds.
Now, Car 1 is obviously the fastest, so I want to make it my reference and express other cars' performance relative to it. If higher was better this would be a simple value/reference * 100, however, if I express Car 1 as 100% this formula makes the other two as 133% and 150% respectively, which is mathematically correct, but makes no sense on a scale of 1-100%. I've wasted the last two hours looking for an answer and only come across two:
(1 - value/reference) + 1 or 2 - value/reference. Problem with this is: if a car takes 12 seconds the result would be zero. Again no sense.
(1/value)/(1/reference) or reference/value. I'm not sure whether it's correct, but it seems to achieve what I want.