骰子概率,n枚骰子中大于或等于m值的骰子数,总共投掷z枚骰子。

huangapple go评论99阅读模式
英文:

dice probability, n dice greater than or equal to m value out of z total dice

问题

以下是您要翻译的代码部分:

  1. 我一直在编写一个小函数用于计算投掷n个不同骰子时获得大于或等于xm个值的概率到目前为止我有以下代码
  2. import java.text.DecimalFormat;
  3. import java.util.Arrays;
  4. import java.util.List;
  5. class DiceProbabilityCalculator {
  6. private static DecimalFormat df = new DecimalFormat("0.0000");
  7. public static void main(String[] args) {
  8. List<Integer> dice = Arrays.asList(1, 2, 3, 4, 5, 6);
  9. int numberOfDice = 2;
  10. int numberOfSuccess = 1;
  11. for (int check = 1, max = dice.size(); check <= max; ++check) {
  12. int pass = max - check + 1;
  13. int failure = check - 1;
  14. double probPass = prob(pass, max);
  15. double probFail = prob(failure, max);
  16. double result = choose(numberOfDice, numberOfSuccess) * Math.pow(probPass, numberOfSuccess) * Math.pow(probFail, numberOfDice - numberOfSuccess);
  17. System.out.println(
  18. "dice count: " + numberOfDice +
  19. ", dice equal or greater than threshold: " + numberOfSuccess +
  20. ", success threshold: " + check +
  21. ", result: " + df.format(result)
  22. );
  23. }
  24. }
  25. static double prob(int countValue, int maxValue) {
  26. return (1.0 * countValue)/(1.0 * maxValue);
  27. }
  28. static double choose(int n, int k) {
  29. return (factorial(n) / (factorial(n-k)*factorial(k)));
  30. }
  31. static double factorial(int num) {
  32. if (num >= 1)
  33. return num * factorial(num - 1);
  34. else
  35. return 1;
  36. }
  37. }

解决方案如下:

  1. 我更新了结果如下
  2. double result = 0;
  3. for (int itr = numberOfSuccess; itr <= numberOfDice; ++itr) {
  4. result += choose(numberOfDice, itr) * pow(probPass, itr) * pow(probFail, numberOfDice - itr);
  5. }

这使得结果看起来更正确。

dice count: 2, dice equal or greater than threshold: 1, success threshold: 1, result: 1.0000
dice count: 2, dice equal or greater than threshold: 1, success threshold: 2, result: 0.9722
dice count: 2, dice equal or greater than threshold: 1, success threshold: 3, result: 0.8889
dice count: 2, dice equal or greater than threshold: 1, success threshold: 4, result: 0.7500
dice count: 2, dice equal or greater than threshold: 1, success threshold: 5, result: 0.5556
dice count: 2, dice equal or greater than threshold: 1, success threshold: 6, result: 0.3056

  1. <details>
  2. <summary>英文:</summary>
  3. I&#39;ve been working on a small function to calculate the probabilities of getting m values greater than or equal to x when rolling n different dice. So far I have
  4. import java.text.DecimalFormat;
  5. import java.util.Arrays;
  6. import java.util.List;
  7. class DiceProbabilityCalculator {
  8. private static DecimalFormat df = new DecimalFormat(&quot;0.0000&quot;);
  9. public static void main(String[] args) {
  10. List&lt;Integer&gt; dice = Arrays.asList(1, 2, 3, 4, 5, 6);
  11. int numberOfDice = 2;
  12. int numberOfSuccess = 1;
  13. for (int check = 1, max = dice.size(); check &lt;= max; ++ check) {
  14. int pass = max - check + 1;
  15. int failure = check - 1;
  16. double probPass = prob(pass, max);
  17. double probFail = prob(failure, max);
  18. double result = choose(numberOfDice, numberOfSuccess) * Math.pow(probPass, numberOfSuccess) * Math.pow(probFail, numberOfDice - numberOfSuccess);
  19. System.out.println(
  20. &quot;dice count: &quot; + numberOfDice +
  21. &quot;, dice equal or greater than threshold: &quot; + numberOfSuccess +
  22. &quot;, success threshold: &quot; + check +
  23. &quot;, result: &quot; + df.format(result)
  24. );
  25. }
  26. }
  27. static double prob(int countValue, int maxValue) {
  28. return (1.0 * countValue)/(1.0 * maxValue);
  29. }
  30. static double choose(int n, int k) {
  31. return (factorial(n) / (factorial(n-k)*factorial(k)));
  32. }
  33. static double factorial(int num) {
  34. if (num &gt;= 1)
  35. return num * factorial(num - 1);
  36. else
  37. return 1;
  38. }
  39. }
  40. The result seems correct for the case where the number of dice match the number of successes, but if there are less successes, I am getting an invalid number.
  41. It&#39;s been a minute since I&#39;ve taken any statistics classes and I am not sure what I am forgetting.
  42. The results for the are:
  43. dice count: 2, dice equal or greater than threshold: 1, success threshold: 1, result: 0.0000
  44. dice count: 2, dice equal or greater than threshold: 1, success threshold: 2, result: 0.2778
  45. dice count: 2, dice equal or greater than threshold: 1, success threshold: 3, result: 0.4444
  46. dice count: 2, dice equal or greater than threshold: 1, success threshold: 4, result: 0.5000
  47. dice count: 2, dice equal or greater than threshold: 1, success threshold: 5, result: 0.4444
  48. dice count: 2, dice equal or greater than threshold: 1, success threshold: 6, result: 0.2778
  49. When I have 2 dice, and am want 1 of them to meet the criteria, I get a probability of zero when I should have a probability of 1. Also the probability of getting a single result is smaller when rolling two dice instead of one (that isn&#39;t right).
  50. **Solution:**
  51. I updated the result to look like the following:
  52. double result = 0;
  53. for (int itr = numberOfSuccess; itr &lt;= numberOfDice; ++itr) {
  54. result += choose(numberOfDice, itr) * pow(probPass, itr) * pow(probFail, numberOfDice - itr);
  55. }
  56. this gave me results that looked more correct.
  57. dice count: 2, dice equal or greater than threshold: 1, success threshold: 1, result: 1.0000
  58. dice count: 2, dice equal or greater than threshold: 1, success threshold: 2, result: 0.9722
  59. dice count: 2, dice equal or greater than threshold: 1, success threshold: 3, result: 0.8889
  60. dice count: 2, dice equal or greater than threshold: 1, success threshold: 4, result: 0.7500
  61. dice count: 2, dice equal or greater than threshold: 1, success threshold: 5, result: 0.5556
  62. dice count: 2, dice equal or greater than threshold: 1, success threshold: 6, result: 0.3056
  63. </details>
  64. # 答案1
  65. **得分**: 0
  66. 你需要计算在击败检查所需次数之前获得的成功次数。在你用问号标记的情况下,例如,两个骰子总是成功的,这意味着你永远不会获得正好一次成功,因此你的代码报告的概率为0。
  67. 如果可以使用他人的程序来计算这些数字,[Troll](http://hjemmesider.diku.dk/~torbenm/Troll/) 可能适合你。
  68. <details>
  69. <summary>英文:</summary>
  70. You need to count the cases where you get more passes than you need to beat the check. In the case that you&#39;ve marked with the question marks, for example, both dice always succeed, which means that you never get exactly one success, hence your code reports probability 0.
  71. If using someone else&#39;s program to calculate these numbers is an option, [Troll](http://hjemmesider.diku.dk/~torbenm/Troll/) might work for you.
  72. </details>

huangapple
  • 本文由 发表于 2020年10月11日 15:39:17
  • 转载请务必保留本文链接:https://go.coder-hub.com/64301685.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定