一个非常难的数学组合问题

来源:百度知道 编辑:UC知道 时间:2024/05/28 10:55:06
在扑克21点游戏里,如果是1副牌,庄家第一张牌是个3,那么,庄家最终出现17点的概率是多少?不考虑已经发过的牌对概率的影响,请写个公式,不要只写出答案,分数全部奉上.

感谢 fengyichuan213兄弟的解答,用穷举实验的方法给出了近似的概率,而且还贴上了源程序.
虽然不是我想要的算出类似问题的数学概率公式,但还是感谢 fengyichuan213的解答.
如果有人能正确给出公式,我会再加分.
另外正确的概率应该是13.5%,软硬17点以上均不得要牌.

3楼的答案太小了。庄家17,18,19,20,21的概率都差不多的 这么算起来等于是在说庄家有90%上的概率爆了。
3在21点里是庄家的弱点,但绝对没有90%爆的概率。。。最多我看也就60%-70%
我在赌场发过21。
先抢个楼。。我编程去了。。
哦 有些赌场 软17也会继续要牌,那我就假设软17不要牌了哦。。。

好 上程序
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package javaapplication9;

import java.util.ArrayList;
import java.util.List;
import java.util.Random;

/**
*
* @author Yichuan
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
List cards = new ArrayList();
String[] suit = {"S", "D", "H", "C"};
Random random = new Random(111);
int point = 3;
int seventeenCount = 0;
int totalCount = -1;
int otherCount = 0;
int bustCou