.com.unity Forums
  The Official e-Store of Shrapnel Games

This Month's Specials

Raging Tiger- Save $9.00
winSPMBT: Main Battle Tank- Save $6.00

   







Go Back   .com.unity Forums > Illwinter Game Design > Dominions 2: The Ascension Wars

Reply
 
Thread Tools Display Modes
  #91  
Old February 19th, 2005, 11:40 PM
BigDaddy's Avatar

BigDaddy BigDaddy is offline
Second Lieutenant
 
Join Date: Feb 2005
Location: Central Illinois
Posts: 434
Thanks: 7
Thanked 3 Times in 3 Posts
BigDaddy is an unknown quantity at this point
Default Re: Random Magic Paths - is it truly random?

That equation looks very familiar, but I've misplace my book... (not my advance statistics books with all their distributions and tests, just the basic one).

Anyway, for anyone who stumble across this with some arcane pattern and thinks it might not be random, remember that radomness is elusive even to statisticians. Understanding randomness could be likened to understanding the actual magnitude of infinite. We can use it and test it, just like infinite, but our perception of it will never be quite accurate. So, consider a random number off of an infinitely long number line. . .
Reply With Quote
  #92  
Old February 20th, 2005, 12:38 AM

alexti alexti is offline
First Lieutenant
 
Join Date: Dec 2003
Location: Calgary, Canada
Posts: 762
Thanks: 0
Thanked 0 Times in 0 Posts
alexti is on a distinguished road
Default Re: Random Magic Paths - is it truly random?

Quote:
Ivan Pedroso said:
Yeah - your initial formula is correct. But I must admit that it could do with some explanations.

Thanks for the explanation why my formula is obvious Indeed, that's where it comes from. It reminds me of my teacher in the university who was used to say "and obviously *something* follows". After it would take me couple of hours to figure out why it was obvious

Quote:
Ivan Pedroso said:
I looked at it (briefly, I'll admit) and could not see what it all meant, or what the idea behind the factors and numbers were. And when I saw that p(i)=0 for i=8 I just disregarded the whole thing and wrote up my (wrong) ideas. (now I get it, and that p(8)=0 is perfectly fine. It's the probability of getting 20 sages in a row with eight(!) paths missing - zero of cause.)

In general case, formula is
Code:

p=sum[i=1..m]((-1)^(i+1)*C(i,m)*p(i)), where p(i)= ((M-i)/M)^N


where M is a number of picks and m <= M is number of picks in a subset, so the formula gives the probability of missing one (or more) of the paths out of subset of m paths.
I've just substitued 8 for m and M for our case, which produced curious p(8)=0
Reply With Quote
  #93  
Old February 20th, 2005, 12:52 AM
bone_daddy's Avatar

bone_daddy bone_daddy is offline
Private
 
Join Date: Jan 2005
Location: Indiana, USA
Posts: 36
Thanks: 0
Thanked 0 Times in 0 Posts
bone_daddy is on a distinguished road
Default Re: Random Magic Paths - is it truly random?

So, does this have to do with true randomness not being possible within a system containing a limited number of variables?
Reply With Quote
  #94  
Old February 20th, 2005, 02:57 AM
BigDaddy's Avatar

BigDaddy BigDaddy is offline
Second Lieutenant
 
Join Date: Feb 2005
Location: Central Illinois
Posts: 434
Thanks: 7
Thanked 3 Times in 3 Posts
BigDaddy is an unknown quantity at this point
Default Re: Random Magic Paths - is it truly random?

A computer can never make really random numbers, a computer scientist has ensured me that that is the case as I believed it was. Instead it uses the clock to produce seemingly random numbers. The numbers themselve seem very much random, in fact, you could call them "virtually random".

True randomness is a rather complicated term, but according to my text randomness is part of anything who's probability of occurence or omission is <100%. So, I'd say that the probability of failure of a device, or the probability of throwing heads on a coin are still random, regardless of their distribution. Distributions just describe some specific random systems. So, I'd have to say no. It's just easier to feel you've grasped random with a coin flip.

Considering a random point on an infinitely long numberline is just a good way to illustrate a humans inability to truly understand certain concepts. Cosider a point on a numberline, if you take an infinitely small movement from that number to any other position on that numberline, there are an infinite number of uniques points between the first and the second, until the movement = 0.

Similarly, we make do with random models and distribution that resemble the things we can test. So, consider this, the probability of flipping heads or tails on a coin 1000 times is 9.3326E-302. IF the coin is flipped an infinite number of times, the probability of this occuring is 1.

In this example we have a demonstration of true randomness, with only two choices (heads or tails).
Reply With Quote
  #95  
Old February 20th, 2005, 03:48 AM
Saber Cherry's Avatar

Saber Cherry Saber Cherry is offline
Major General
 
Join Date: Oct 2003
Location: Crystal Tokyo
Posts: 2,453
Thanks: 0
Thanked 0 Times in 0 Posts
Saber Cherry is on a distinguished road
Default Re: Random Magic Paths - is it truly random?

Via's CPU's produce random numbers, using special hardware. A Turing Machine cannot make random numbers, but modern computers don't have all the limitations of Turing machines (as shown by Via).
__________________
Cherry
Reply With Quote
  #96  
Old February 20th, 2005, 09:41 AM

Ivan Pedroso Ivan Pedroso is offline
Corporal
 
Join Date: Feb 2004
Location: Denmark
Posts: 67
Thanks: 0
Thanked 0 Times in 0 Posts
Ivan Pedroso is on a distinguished road
Default Re: Random Magic Paths - is it truly random?

Quote:
alexti said:
It reminds me of my teacher in the university who was used to say "and obviously *something* follows". After it would take me couple of hours to figure out why it was obvious

Hehehe. I can relate to that , I've heard and read it many times too. What about: "The proof of [bla bla] is left to the reader as an exercise" - that occured alot in my text books.

(It's a typical situation in math, until you get the point you are more or less in the dark, but when you get it, it really feels obvious afterwards. All teachers really could do with remembering their fumblings in the dark in their early days.)
__________________
If I have seen further, it is by standing on the shoulders of Niefel Jarls
- Sir Ice-ac Newton
Reply With Quote
  #97  
Old February 20th, 2005, 10:03 AM
bone_daddy's Avatar

bone_daddy bone_daddy is offline
Private
 
Join Date: Jan 2005
Location: Indiana, USA
Posts: 36
Thanks: 0
Thanked 0 Times in 0 Posts
bone_daddy is on a distinguished road
Default Re: Random Magic Paths - is it truly random?

Ok, so although the occurence of any given number within the set of variables will be random, there will be an emergent pattern (the distribution) which is not. Is my comprehension of what you are saying correct?

Please forgive my ignorance concerning stats and probs, but I've never taken any math courses beyond basic algebra and trig. Never really needed them. I have a tendency to only learn things as I need them, unless it's something I find interesting. :-/
Reply With Quote
  #98  
Old February 20th, 2005, 02:56 PM
BigDaddy's Avatar

BigDaddy BigDaddy is offline
Second Lieutenant
 
Join Date: Feb 2005
Location: Central Illinois
Posts: 434
Thanks: 7
Thanked 3 Times in 3 Posts
BigDaddy is an unknown quantity at this point
Default Re: Random Magic Paths - is it truly random?

It is true that a computer can give numbers that have a nearly random distribution, BUT because they use a distribution (my brother called it an MT, for I think Marsenne Twist) and a seed (from the clock) there is an element of forecasting available that is completely impossible with true random systems. I think ANSI, which regulate random numbers I guess, has determined the the MT is the new method of choice! Still sophisticated software CAN match/nearly match random distributions, but it can't come up with random numbers. Nearly matching distributions is all you have to prove, and I don't believe that it was ever speculated that computers couldn't come close to random. In a logical system such as the computer, its impossible for the PC to pull a number out of it's B***, it's programmed how to follow a distribution.

Bone_daddy, yes, random systems have their own "patterns". Such as the normal distribution, where outliers of very high numbers are explained, but most number fall close to the average.
Reply With Quote
  #99  
Old February 21st, 2005, 03:18 PM
Verjigorm's Avatar

Verjigorm Verjigorm is offline
Second Lieutenant
 
Join Date: Dec 2004
Location: BF Illinois
Posts: 445
Thanks: 13
Thanked 27 Times in 21 Posts
Verjigorm is on a distinguished road
Default Re: Random Magic Paths - is it truly random?

Interesting... is this device a miniature Geiger-Muller tube with some sort of radioactive isotope in a sealed chamber (similar to the technology used to make smoke detectors)? Is there a website where I can see a press release for it--I couldn't seem to find one in my own search (although I didn't look very long).
__________________
"Let your plans be dark and as impenetratable as night, and when you move, fall like a thunderbolt." -- Sun Tzu
Reply With Quote
  #100  
Old February 21st, 2005, 03:26 PM
BigDaddy's Avatar

BigDaddy BigDaddy is offline
Second Lieutenant
 
Join Date: Feb 2005
Location: Central Illinois
Posts: 434
Thanks: 7
Thanked 3 Times in 3 Posts
BigDaddy is an unknown quantity at this point
Default Re: Random Magic Paths - is it truly random?

That IS interesting. Basically, its like programming a robot to roll a die and then read the number, but it doesn't remove the theoretical limitation (that being that a computer is unable to come up with its own random numbers, in any case because you can forecast them knowing the time/function).

A very good use of it would be to make a pregenerated table or random numbers to seed your RNG.
Reply With Quote
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 02:35 PM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2024, Shrapnel Games, Inc. - All Rights Reserved.