Big Six Dice Game

Posted onby

Find many great new & used options and get the best deals for Classic Farkel Game 6 Dice Legendary Games 2006 100 Complete at the best online prices at eBay! Free shipping for many products! Yardzee is basically Yahtzee for the yard! Instead of tossing dice onto a table.

A quick puzzle this week.

Your friend offers you a bet: Roll six dice, and if you get exactly four distinct numbers you win.

Question: would you accept this deal at even odds?

For example a roll of 1,2,3,6,3,6 would win but a 1,6,3,4,2,6 would be a loss.

LOSS

Give it a few minutes thought …

Advertisement:

Big Six Dice Game Template

Solution

There are many ways to solve this. One of these is with brute force. There are only 46,656 possible combinations the dice can land on (6 × 6 × 6 × 6 × 6 × 6), and it’s just a couple of lines of code to write some nested loops and perform the check.

Here is a table showing the frequency count of every distinct combination of the spots.

Distinct CountFrequency
16
2930
310,800
423,400
510,800
6720
TOTAL46,656

As you can see, the total number of combinations with a distinct count of four is 23,400/46,656 which simplifies to 325/648, which is just a little more than 50:50, so it’s (just) slightly better than even odds. Yes, it’s a good bet to take!

Formal Solution

Solving with brute force might not be very elegant, but it’s simple to write. You could optimize a little from symmetry, but let’s apply logic and come up for a formal solution.

There are only two possible ways we can get a distinct count of four:

  • Three of a kind, then three distinct singletons.

  • Two (different) pairs, with two distinct singletons.

Six Dice Free

Triple

There are 6 possible values for what the triplet dice would be, and there are 6 choose 3 ways this triplet could appear. There are then 5 values that the first singleton could be, 4 values for the second, and 3 for the last singleton. This is 6 × 6C3 × 5 × 4 × 3 = 7,200 possible combinations.

7,200/46,656 = 25/162.

Big Six Dice Game

Two Pair

With two pairs, there are 6C2 for what these numbers are. The first pair has 6C2 choices of where to go, and the second pair has 4C2 choices of position. There are then 4 possible combinations for the first singleton, and 3 possible for the last singleton.

Big six dice game download

This is 6C2 × 6C2 × 4C2 × 4 × 3 = 15 × 15 × 6 × 4 × 3 = 16,200 possible combinations.

16,200/46,656 = 25/72.

Total

Adding these together, we get (7,200+16,200)/46,656 = 23,400/46,656 = 325/648

Six Dice Game Rules

This confirms the answer we obtained from brute force! (Approx 50.15%)

6 5 4 Dice Rules

dice-playHow to play...

Big Six

A casino game that doesn't use dice, but instead uses a 'wheel of fortune' with dice faces painted on it.There are 56 sets of three dice faces around the edge of the wheel. Players bet on a layout showing six die values.

If a player bets on 1 and 1,2,4 comes up on the wheel, they win 1 unit plus their original wager. If 1,1,5 comes up, they get 2 units back and their original wager. And it follows that if 1,1,1 comes up they get 3 units as well as their original wager.

Along the same principles of Chuck-A-Luck, the casino is hoping for pairs and triples to come up. The wheel will have a disproportionate number of these pairs and triples. This is a mugs' game with a huge House edge and should be avoided.

For A Comprehensive List Of Dice Games, Visit...

Copyright © 2016 Stormdark I.P. & Media - www.dice-play.com
The content of this page is for personal use only and may not be copied or reproduced in any form, including digital, for any purpose without prior written permission from the author and publisher. Copyright is retained on all text and illustrations.