For a while I have been think over how I can make a formula to decide on something by determining its best value for …
I have created something that I quite like and a way about doing it.
Lets say I wanted to choose a race to participate in.
I have three values i need to determine its overall quality:
The Number of players
The Time until it starts - usually normalized
And the earnings
The best way I found is to do
return NumPlayers / TimeTilStart * Earnings
Generally I believed this yielded a good result. The only problem is it can yield inf if one value is zero.
But I think it works okay.
I want to know if there are another others methods to determine if something is best like race for example
Race1:
NumPlayers = 3
TimeTilStart = .75
Earnings = 1
Race2:
NumPlayers = 2
TimeTilStart = .89
Earnings = 1.5
Using My method this would results in
Race1 = 4 --something because idk what units it would be in?
Race2 = 3.37 --something because idk what units it would be in?
According to my method it would be best to choose race1.
I would like any other methods people have that may yield a better result
Thanks