Multipartite comments on Bayesian RPG system? - Less Wrong

12 Post author: DataPacRat 08 February 2012 11:53AM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (23)

You are viewing a single comment's thread. Show more comments above.

Comment author: gwern 08 February 2012 08:49:16PM -1 points [-]

I think it'd increase it to ~49% (if you have a 0.0001 chance of success, you have a 0.9999 chance of failure, and 0.9999 / 2 = 0.49995).

Comment author: DanielLC 09 February 2012 12:48:35AM 3 points [-]

That's a 49.995% chance of failure, and a 50.005% chance of success. Also 0.49995 is much closer to 50% than to 49%.

In any case, it should be nowhere near 50%. Increasing the log probability by log(2) would approximately halve the probability of failure if you're very likely to succeed, but it would double the chance of success if you're very likely to fail.

Comment author: Multipartite 10 February 2012 04:10:27PM *  0 points [-]

To answer the earlier question, an alteration which halved the probability of failure would indeed change an exactly-0% probability of success into a 50% probability of success.

If one is choosing between lower increases for higher values, unchanged increases for higher values, and greater increases for higher values, then the first has the advantage of not quickly giving numbers over 100%. I note though that the opposite effect (such as hexing a foe?) would require halving the probability of success instead of doubling the probability of failure.

The effect you describe, whereby a single calculation can give large changes for medium values and small values for extreme values, is of interest to me: starting with (for instance) 5%, 50% and 95%, what exact procedure is taken to increase the log probability by log(2) and return modified percentages?
<unfamiliar with log probabilities, and curious to decrease this unfamiliarity>


Edit: (A minor note that, from a gameplay standpoint, for things intended to have small probabilities one could just have very large failure-chance multipliers and so still have decreasing returns. Things decreed as effectively impossible would not be subject to dice rolling or similar in any case, and so need not be considered at length. In-game explanation for the function observed could be important; if it is desirable that progress begin slow, then speed up, then slow down again, rather than start fast and get progressively slower, then that is also reasonable.)

Comment author: DanielLC 10 February 2012 05:35:45PM 2 points [-]

what exact procedure is taken to increase the log probability by log(2) and return modified percentages?

The simplest way is to use odds ratios instead of log probability. 5% is 1:19. Multiply that by 2:1 and you get 2:19 which corresponds to 9.52%. If it's close to 100%, you get close to half the probability of failure. If it's close to 0%, you get close to double the probability of success.

This can be done with dice by using a virtual d21. You can do that by rolling a higher-numbered die and re-rolling if you pass 21. Since the next die up is d100, you can combine two dice to get d24 or d30 the same way you combine two d10s to get a d100. Alternately, use a computer or a graphing calculator instead of a die, and you can have it give whatever probabilities you want.

Comment author: Multipartite 11 February 2012 09:36:24PM 0 points [-]

Thank you!