Random number Definition and 65 Threads

  1. W

    Have you ever wondered how true random number generators work?

    Take for instance when you ask Mathematica 7 to generate a random number. This number can't be really random. It has to adhere to some process for picking that specific number. Does anyone know anything about the algorithm/process to this?
  2. S

    Random number generator of 2 normal distributions partially correlated

    I am trying to generate 2 normal random distributions (x1,...,xn) (y1,...,yn) that have a predefined degree of correlation between them. The constrain is that I am trying to have the same mean and stdev for both of them.
  3. C

    Uniform random number generator (RNG)

    I am writing a program in Fortran language, in which i use a Random Number Generator (RNG) subroutine. Until now i used ran1 from " Numerical Recipes in fortran ,second edition, Page 271 ", but i think it is quite slow. While searching on the internet for a faster RNG i found a few...
  4. F

    Sum of random number of random variables

    Hi, Guys, I'm new to this forum, and don't have strong background in probability theory, so please bare with me if the question is too naive. Here's the question, In a problem I'm trying to model, I have a random variable (say, R), which is a sum of random number (say, N) of random variables...
  5. S

    Can Random Number Generators Detect Global Events?

    http://www.popsci.com/article/2006-07/diy-esp My explanation: 1) statistical anomalies are to be expected, due to the law of big numbers. 2) they're doing post-hoc predictions: "when statistical anomaly occurs => read the news and find the event"
  6. J

    PHP Random number generator (Need help)

    Okay, What I am trying to do is create a create a random number generator, that outputs 1 and 2 (coin toss) From what I understand, the more coin tosses (the more times I generate a random 1 or 2) the more uniform the pattern should be. EG: After generating a random 1-2 sequence, 1,000,000...
  7. J

    How to Create a PHP Random Number Generator for a Coin Toss?

    Okay, What I am trying to do is create a create a random number generator, that outputs 1 and 2 (coin toss) From what I understand, the more coin tosses (the more times I generate a random 1 or 2) the more uniform the pattern should be. EG: After generating a random 1-2 sequence, 1,000,000...
  8. T

    Random Number Generator, Lottery, and duplicats

    Random Number Generator, Lottery, and duplicates Hi, I'm new here and looking for a bit of help and some overall conversation on a new project I'm working on. It fundamentally surrounds an international online lottery pool where visitors can join, buy a lottery ticket and then use the power of...
  9. K

    Will a Random Number Generator Eventually Repeat Its Numbers?

    I am just curious. If I have a random number generator, eventually, if I wait long enough all possible numbers should began to repeat. Or would the numbers not repeat? For example, if say the first hundred numbers were totally random 455688132547... etc. would the machine eventually repeat...
  10. Integral

    My Daughter's First Program: A Random Number Generator

    I was just shutting down my 12yr old daughters computer. I found Visual Basic running. She has programed a working random number generator. Sure she copied most of the code from the help screens. But she created the form, has a working text box, a lable displaying the results with a command...
  11. N

    What is the Solution for Creating a Uniform Random Number Generator in C?

    i generate a sequence of random number in [0,9], and i need to know whether the random number is uniform or not, so i should check how many time of 1 or 2 or 3...had been generated by the generator? but my program is not work!? #include<stdio.h> #include<stdlib.h> #include<time.h> void...
  12. A

    Conditional probability - Random number of dice

    Can someone help me with this question ? A random number N of dice is thrown. Let Ai be the event that N = i, and assume that P(Ai) = 1/(2)^i, i >= 1. The sum of the scores is S. Find the probability that: (a) S = 4, given N is even; (b) the largest number shown by any die is r, where S...
  13. P

    Can a random number generator predict the future?

    "'It's Earth-shattering stuff,' says Dr Roger Nelson, emeritus researcher at Princeton University in the United States, who is heading the research project behind the 'black box' phenomenon." They say this box that generates random numbers, 1 or 0, generated many more 1's just before princess...
  14. B

    Blackjack, random number generators

    is there a way to 'beat' a random card generator in blackjack with card counting? a very simple card counting system works by counting high cards against low ones, if i have a count of +9 (high cards likely) with 3 decks left in the shoe i divide by # of decks left and get a +3 'true...
  15. A

    Is a Random Number Generator Truly Uniformly Distributed?

    Can somebody prove the following: A Random number which (truly) is uniformly distributed on [0 1] (or in fact any continuous random variable) is irrational with probability 1.
Back
Top