Suppose I have a video that plays for 60 minutes at normal "1x" speed. I know that if I set the video to play at "2x" speed, then it should play for 30 minutes.
Now, what if the video is set to play at "1.5x" speed? Intuition leads me to two answers:
Since 1.5x is directly in the middle between 1x and 2x, then the video should play directly in the middle of 60 minutes and 30 minutes, meaning it should play for 45 minutes.
When playing at 2x speed, I can compute that
$$ 60\ \text{real-time minutes} \times \frac{1\ \text{play-back minute}}{2\ \text{real-time minutes}} = 30 \ \text{play-back minutes} $$ Analogously, for 1.5 speed, I can compute $60 \times \frac{1}{1.5} =$ 40.0 minutes.
Which one is the correct answer, 45 minutes or 40 minutes, and why? What if I try to play the video at $Nx$ speed, where $N > 0$, to indicate playing media at a faster speed or slower speed?
