Conquer Club

Dice Complaints and Various Suggestions to Fix Them

Suggestions that have been archived.

Moderator: Community Team

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby shocked439 on Mon Nov 22, 2010 2:29 pm

All I know is the dice are either ridiculously good are impossibly bad, there is no expected results with the dice. It is atrocious.
User avatar
Sergeant shocked439
 
Posts: 608
Joined: Sat Jul 05, 2008 4:00 pm
Location: Denver, Colorado

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby maasman on Mon Nov 22, 2010 3:09 pm

Metsfanmax wrote:
oldrisky44 wrote:1,000,000 assaults per day. So the random number file is being recycled quite often. The "impossible" is bound to happen in that many permutations.

The hardest part about dealing with random numbers is that they are so darn unpredictable.


To get a rough estimate, 5,000,000 dice per day distributed uniformly over 24 hours is ~ 200,000 dice per hour. The dice list has 50,000 entries, so we can guess that a given list is run through about four times before it is replaced.

I could have sworn I saw somewhere that the dice are replaced when they are all used, or when the hour is up, whichever comes first. So I don't think the same numbers are used multiple times.
Image
User avatar
Colonel maasman
 
Posts: 543
Joined: Wed Apr 11, 2007 6:45 pm
Location: Goose Creek, USA

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby blakebowling on Mon Nov 22, 2010 5:31 pm

maasman wrote:
Metsfanmax wrote:
oldrisky44 wrote:1,000,000 assaults per day. So the random number file is being recycled quite often. The "impossible" is bound to happen in that many permutations.

The hardest part about dealing with random numbers is that they are so darn unpredictable.


To get a rough estimate, 5,000,000 dice per day distributed uniformly over 24 hours is ~ 200,000 dice per hour. The dice list has 50,000 entries, so we can guess that a given list is run through about four times before it is replaced.

I could have sworn I saw somewhere that the dice are replaced when they are all used, or when the hour is up, whichever comes first. So I don't think the same numbers are used multiple times.

This was changed with the last update. IIRC the same file is used constantly and not refreshed.
Private blakebowling
 
Posts: 5093
Joined: Wed Jan 23, 2008 12:09 pm
Location: 127.0.0.1

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby Juan_Bottom on Mon Nov 22, 2010 5:34 pm

What does "high quality random numbers" even mean? I've always wondered this but didn't want to look dumb. How low quality can 6 different numbers be? 8-[
User avatar
Sergeant 1st Class Juan_Bottom
 
Posts: 1110
Joined: Mon May 19, 2008 4:59 pm
Location: USA RULES! WHOOO!!!!

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby Metsfanmax on Mon Nov 22, 2010 5:43 pm

Juan_Bottom wrote:What does "high quality random numbers" even mean? I've always wondered this but didn't want to look dumb. How low quality can 6 different numbers be? 8-[


Even if your script produces theoretically random numbers, in the sense that it's impossible to predict what the result would be (i.e. there are no regular patterns), it's not worth much if it doesn't also produce a normal distribution; that is, you would expect that each number from 1 to 6 would occur about 1/6 of the time. If the generator is biased in such a way that, say, 5 is substantially more likely than any other number, then your random numbers are not high quality.
User avatar
Sergeant 1st Class Metsfanmax
 
Posts: 6722
Joined: Wed Apr 11, 2007 11:01 pm

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby Woodruff on Tue Nov 23, 2010 10:38 am

Juan_Bottom wrote:What does "high quality random numbers" even mean? I've always wondered this but didn't want to look dumb. How low quality can 6 different numbers be? 8-[


Metsfanmax's answer sounds much more educated, but I actually suspect that was only a modest attempt at humor.
...I prefer a man who will burn the flag and then wrap himself in the Constitution to a man who will burn the Constitution and then wrap himself in the flag.
User avatar
Corporal 1st Class Woodruff
 
Posts: 5093
Joined: Sat Jan 05, 2008 9:15 am

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby Ace Rimmer on Tue Nov 23, 2010 10:45 am

Metsfanmax wrote:
Juan_Bottom wrote:What does "high quality random numbers" even mean? I've always wondered this but didn't want to look dumb. How low quality can 6 different numbers be? 8-[


Even if your script produces theoretically random numbers, in the sense that it's impossible to predict what the result would be (i.e. there are no regular patterns), it's not worth much if it doesn't also produce a normal distribution; that is, you would expect that each number from 1 to 6 would occur about 1/6 of the time. If the generator is biased in such a way that, say, 5 is substantially more likely than any other number, then your random numbers are not high quality.


(I'm no mathematician, but I had a good night's sleep last night)
I'm pretty sure that's not true. If it follows a normal distribution then it would not be random - random means that the past and future rolls have no impact on the current roll, so you could roll a 6 for 100,000 times in a row in true random. There is no need for a normal distribution, because true randomness will not have a normal distribution. You would expect it to haev a normal distribution, but it is not required.
User avatar
Lieutenant Ace Rimmer
 
Posts: 1911
Joined: Mon Dec 01, 2008 1:22 pm

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby trapyoung on Tue Nov 23, 2010 10:50 am

Yeah but any skew towards any number favors the defender if there is no normal distribution. That's why it would be more useful to just have a list of 666 numbers that list 1-6 111 times each and jumble it up then just project which might be random and skew. The distribution should not be random, only when and how they are generated show be.
User avatar
Colonel trapyoung
 
Posts: 1116
Joined: Thu Oct 18, 2007 1:25 pm

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby squishyg on Tue Nov 23, 2010 10:58 am

i think the RNG should be updated to reflect how often in real life my dice roll off the table.
Image
There is no fog rule and I am no gentleman.
Robinette wrote:
Kaskavel wrote:Seriously. Who is the female conqueror of CC?

Depends on what metric you use...
The coolest is squishyg
User avatar
Captain squishyg
 
Posts: 2651
Joined: Sun Jan 04, 2009 11:05 pm

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby Doc_Brown on Tue Nov 23, 2010 12:34 pm

jakewilliams wrote:
Metsfanmax wrote:
Juan_Bottom wrote:What does "high quality random numbers" even mean? I've always wondered this but didn't want to look dumb. How low quality can 6 different numbers be? 8-[


Even if your script produces theoretically random numbers, in the sense that it's impossible to predict what the result would be (i.e. there are no regular patterns), it's not worth much if it doesn't also produce a normal distribution; that is, you would expect that each number from 1 to 6 would occur about 1/6 of the time. If the generator is biased in such a way that, say, 5 is substantially more likely than any other number, then your random numbers are not high quality.


(I'm no mathematician, but I had a good night's sleep last night)
I'm pretty sure that's not true. If it follows a normal distribution then it would not be random - random means that the past and future rolls have no impact on the current roll, so you could roll a 6 for 100,000 times in a row in true random. There is no need for a normal distribution, because true randomness will not have a normal distribution. You would expect it to haev a normal distribution, but it is not required.


Metsfan is actually correct. It is true that for a true random number generator, prior result have no bearing on the probability of the outcome of the next roll. However, because of that very fact, over a very large number of rolls, assuming the probability density function is uniform, you should expect to see roughly equal numbers of each of the possible outcomes. This principle underlies quite a bit of modern physics (particularly quantum physics).

Now, rolling a 6 100 times in a row has a low probability in and of itself, but if it happens, the probability of rolling a six on the next roll is still unchanged (1/6 probability). Also, if you roll the dice enough times, it would become extremely unlikely to not see 100 6s in a row on occasion.
Image
User avatar
Colonel Doc_Brown
 
Posts: 1323
Joined: Tue Sep 29, 2009 6:06 pm

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby trapyoung on Tue Nov 23, 2010 12:56 pm

squishyg wrote:i think the RNG should be updated to reflect how often in real life my dice roll off the table.


It'd be cooler if it reflected how often my brother would throw the dice on the board and wipe any amount of troops off Africa and part of Europe. Like nuke spoils but more random and more devestating.
User avatar
Colonel trapyoung
 
Posts: 1116
Joined: Thu Oct 18, 2007 1:25 pm

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby squishyg on Tue Nov 23, 2010 1:44 pm

trapyoung wrote:
squishyg wrote:i think the RNG should be updated to reflect how often in real life my dice roll off the table.


It'd be cooler if it reflected how often my brother would throw the dice on the board and wipe any amount of troops off Africa and part of Europe. Like nuke spoils but more random and more devestating.


haha!!! so true!!
Image
There is no fog rule and I am no gentleman.
Robinette wrote:
Kaskavel wrote:Seriously. Who is the female conqueror of CC?

Depends on what metric you use...
The coolest is squishyg
User avatar
Captain squishyg
 
Posts: 2651
Joined: Sun Jan 04, 2009 11:05 pm

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby PLAYER57832 on Tue Nov 23, 2010 9:35 pm

jakewilliams wrote:(I'm no mathematician, but I had a good night's sleep last night)
I'm pretty sure that's not true. If it follows a normal distribution then it would not be random - random means that the past and future rolls have no impact on the current roll, so you could roll a 6 for 100,000 times in a row in true random. There is no need for a normal distribution, because true randomness will not have a normal distribution. You would expect it to haev a normal distribution, but it is not required.

Not all populations follow a bell curve, but getting into all that is more than my tired brain can handle at the moment. And, people are having a hard enough time understanding random/normal distribution already, without throwing other issues into the mix.
Corporal PLAYER57832
 
Posts: 3085
Joined: Fri Sep 21, 2007 9:17 am
Location: Pennsylvania

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby PLAYER57832 on Tue Nov 23, 2010 9:37 pm

Doc_Brown wrote:Now, rolling a 6 100 times in a row has a low probability in and of itself, but if it happens, the probability of rolling a six on the next roll is still unchanged (1/6 probability). Also, if you roll the dice enough times, it would become extremely unlikely to not see 100 6s in a row on occasion.

QFT.

That last sentence is what people have a hard time understanding and accepting, both.
Corporal PLAYER57832
 
Posts: 3085
Joined: Fri Sep 21, 2007 9:17 am
Location: Pennsylvania

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby Metsfanmax on Tue Nov 23, 2010 9:54 pm

PLAYER57832 wrote:
Doc_Brown wrote:Now, rolling a 6 100 times in a row has a low probability in and of itself, but if it happens, the probability of rolling a six on the next roll is still unchanged (1/6 probability). Also, if you roll the dice enough times, it would become extremely unlikely to not see 100 6s in a row on occasion.

QFT.

That last sentence is what people have a hard time understanding and accepting, both.


While it's true, the expected probability of that outcome is on the order of 10^-78. So you couldn't roll the dice enough times in the current age of the Universe for it to become extremely unlikely not to have a few of those streaks ;P
User avatar
Sergeant 1st Class Metsfanmax
 
Posts: 6722
Joined: Wed Apr 11, 2007 11:01 pm

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby Tennisie on Wed Nov 24, 2010 6:42 pm

Metsfanmax wrote:
PLAYER57832 wrote:
Doc_Brown wrote:Now, rolling a 6 100 times in a row has a low probability in and of itself, but if it happens, the probability of rolling a six on the next roll is still unchanged (1/6 probability). Also, if you roll the dice enough times, it would become extremely unlikely to not see 100 6s in a row on occasion.

QFT.

That last sentence is what people have a hard time understanding and accepting, both.


While it's true, the expected probability of that outcome is on the order of 10^-78. So you couldn't roll the dice enough times in the current age of the Universe for it to become extremely unlikely not to have a few of those streaks ;P

It all depends on the state of the universe. Considering the universe as a pseudorandom number generator with an infinitely long cycle, if it was started at the right spot in the cycle, it could produce many of those streaks because the streaks themselves are randomly dispersed throughout the cycle. Apparently we've hit a spot in the cycle where there are lots of streaks. For example, I once lost 87 - 0 during a single auto-attack, which I'm told involves a probability of around 10^-20.
User avatar
Colonel Tennisie
 
Posts: 117
Joined: Sat Oct 13, 2007 10:50 pm
Location: U.S.

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby Metsfanmax on Wed Nov 24, 2010 7:07 pm

Tennisie wrote:It all depends on the state of the universe. Considering the universe as a pseudorandom number generator with an infinitely long cycle


No.

, if it was started at the right spot in the cycle, it could produce many of those streaks because the streaks themselves are randomly dispersed throughout the cycle. Apparently we've hit a spot in the cycle where there are lots of streaks.


Also, no.

For example, I once lost 87 - 0 during a single auto-attack, which I'm told involves a probability of around 10^-20.


That's slightly more reasonable. The age of the Universe is on the order of 10^21 seconds.
User avatar
Sergeant 1st Class Metsfanmax
 
Posts: 6722
Joined: Wed Apr 11, 2007 11:01 pm

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby Donlarry on Thu Nov 25, 2010 1:27 am

u can still get your wins in with bad dice
User avatar
Corporal 1st Class Donlarry
 
Posts: 177
Joined: Mon Jun 14, 2010 7:22 pm

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby Woodruff on Thu Nov 25, 2010 2:48 am

Donlarry wrote:u can still get your wins in with bad dice


If I weren't just recently a private, I would greatly enjoy responding to this.
...I prefer a man who will burn the flag and then wrap himself in the Constitution to a man who will burn the Constitution and then wrap himself in the flag.
User avatar
Corporal 1st Class Woodruff
 
Posts: 5093
Joined: Sat Jan 05, 2008 9:15 am

Re: Hire a Professional Mathematician/Coder to fix Dice

Postby Donlarry on Thu Nov 25, 2010 2:20 pm

i do lose about 20% of my games to bad dice u get doubled off in the beginning of the game and its over or a important point in the game ull get doubled off sometimes ull get 4 doubles in a row
User avatar
Corporal 1st Class Donlarry
 
Posts: 177
Joined: Mon Jun 14, 2010 7:22 pm

Re: Dice system.

Postby nebsmith on Thu Nov 25, 2010 2:28 pm

Thezzaruz wrote:
rufus2021 wrote:And why would these things be randomized anyways? If a true army of 1000 men attacked one of 200 would the 200 randomly defeat them?

If you don't like the basic premise that CC (and the game it is based upon) is built on then you are free to go and invent your own game that suits your own preferences.



Yes! If you don't like risk, find another game you do like. Don't try and change this one into something that is no longer risk.
Image
Sergeant nebsmith
 
Posts: 559
Joined: Sun Aug 22, 2010 10:25 am
Location: London

Re: Dice system.

Postby TheForgivenOne on Thu Nov 25, 2010 6:10 pm

nebsmith wrote:
Thezzaruz wrote:
rufus2021 wrote:And why would these things be randomized anyways? If a true army of 1000 men attacked one of 200 would the 200 randomly defeat them?

If you don't like the basic premise that CC (and the game it is based upon) is built on then you are free to go and invent your own game that suits your own preferences.



Yes! If you don't like risk, find another game you do like. Don't try and change this one into something that is no longer risk.


But I like monopoly...
Image
Game 1675072
2018-08-09 16:02:06 - Mageplunka69: its jamaica map and TFO that keep me on this site
User avatar
Major TheForgivenOne
 
Posts: 5996
Joined: Fri May 15, 2009 8:27 pm
Location: Lost somewhere in the snow. HELP ME

Re: Dice system.

Postby Thezzaruz on Thu Nov 25, 2010 8:07 pm

So do I. Lets petition for a mandatory "Free Parking" territory on all maps. \o/\o/\o/ O:)
User avatar
Lieutenant Thezzaruz
 
Posts: 1093
Joined: Mon Feb 04, 2008 2:10 pm
Location: OTF most of the time.

Re: Dice system.

Postby mgourley on Mon Dec 06, 2010 3:05 pm

People, you don't seem to know what random is.

Random does not mean extended hot or cold streaks won't happen, it mean's ANYTHING can happen!
User avatar
Sergeant mgourley
 
Posts: 33
Joined: Mon Mar 31, 2008 1:03 am
Location: Missouri

fast please

Postby ben79 on Thu Feb 10, 2011 3:09 pm

NEW DICE SYSTEM FAST
User avatar
Lieutenant ben79
 
Posts: 472
Joined: Tue Dec 04, 2007 4:29 pm

PreviousNext

Return to Archived Suggestions

Who is online

Users browsing this forum: No registered users