I'm trying to figure out if there's a way to calculate if it's worth taking a toll road if it will save me time.
For example, if the toll only costs 50 cents and my trip will save me 30 minutes, I will take the toll. On the other hand, if the toll is $5 but it will only save me 5 minutes, I will not take the toll.
If feel as if there's a mathematical way to calculate this decision, based on:
- p = price of the toll
- t = time saved (estimated)
- v = value of my time
Sample inputs:
- p = 2 dollars
- t = 15 minutes
- v = $30/hr
Based on this example, is it worth it to take the toll? And how to make this decision for any inputs? Perhaps different inputs are needed? I'm not sure how to set up an equation for this.