0
votes
1answer
28 views

running estimates of empirical PMF and variation therein, given a RNG

Suppose a black-box random number generator which continually emits integer values in some interval (for the case of immediate interest, [0, 255]). I want to estimate the probability mass function ...
1
vote
2answers
53 views

Interview: random3 function implementation using random2

On recent interview I was asked the following question. There is a function random2(), wich returns 0 or 1 with equal probability (0.5). Write implementation of random4() and random3() using ...
0
votes
1answer
77 views

how can I plot a histogram using random.expovariate() PYTHON

I have a question where it shows customers entering a bar at a rate of 7 per hour, the question states i NEED to use random.expovariate() and generate a histogram showing 100 inter-arrival times. So ...
3
votes
0answers
120 views

how can I generate a normal distribution with a skew in javascript? [closed]

I need to generate a normal distribution with a skew that fits the following constraints negativeSigma (minus one standard deviation) mean (value the distribution is centered upon) positiveSigma ...
1
vote
2answers
90 views

generate random long user ID

I am writing an android app giving each client a long user ID through this formula: long userID = (long) (Math.random() * 2 * Long.MAX_VALUE - Long.MAX_VALUE); Am I utilizing MAX_VALUE correctly ...
0
votes
2answers
155 views

mathematics behind modulo behavor

Preamble This question is not about the behavior of (P)RNG and rand(). It's about using power of two values uniformly distributed against modulo. Introduction I knew that one should not use modulo ...
7
votes
2answers
95 views

Is there a statistical difference between generating many random vectors vs a single random matrix

Is there a statistical difference between generating a series of paths for a montecarlo simulation using the following two methods (note that by path I mean a vector of 350 points, normally ...
2
votes
2answers
155 views

set.seed with R 2.15.2

My understanding is that using set.seed ensures reproducibility but this is not the case with the following R code in R 2.15.2. Am I missing something here? set.seed(12345) rnorm(5) [1] 0.5855288 ...
0
votes
0answers
50 views

Compute the randomness of a sequence of 16-bit integers

I want to be able to compute the randomness of a 16-bit integer (id and sport) in the below SQL table. Does anybody has a good an simple suggestion. The result ideally should just show how random is ...
0
votes
2answers
296 views

How to produce the following random variables? [closed]

Using MATLAB, you have to start with a uniform distribution between (0,1). You need to generate the following sequences of random variables: 1.Rayleigh distributed random variable. (a=0, b=1). ...
3
votes
2answers
50 views

Mean of Sampleset and powered Sampleset

I am working on an ICA implementation wich is based on the assumption, that all source signals are independent. So I checked on the basic concepts of Dependence vs. Correlation and tried to show this ...
4
votes
2answers
155 views

Updating visitor count if a random number is equal to a fixed one [if random == fixed: increase visitor count]

When working on one of Sweden's most popular websites, I came across a (to me) strange snippet which ran on every page: if( rand(0, 100) === 50 ) // increase visitor count What this does is ...
5
votes
2answers
172 views

Random identifier in java

I would like to generate random identifier in java. The identifier should have a fixed size, and the probability of generating the same identifier twice should be very low(The system has about 500 000 ...
3
votes
2answers
242 views

Generate 3 uniform random variables that sum to 0

I want to generate three random variables a, b and c such that (i) a+b+c=0; and (ii) each one is uniformly distributed in (-1,1). The two-variable version is easy: a=2*rand()-1; b=-a. (Note: rand() ...
0
votes
0answers
77 views

Math Probability, random process, histogram [closed]

deterministic signal, histogram,and probability density function? Hi Guys, I'm really confused. I'm collecting some data(time series signals).I have 3 signals x1[n], x2[n] and x3[n], so it's a RANDOM ...
2
votes
1answer
108 views

Lognormal Random Numbers Centered around a high value

I am trying to create random numbers from a lognormal distribution using numpy/scipy. The mean is given as 2000 and sigma as 800. If I create my random valus using ...
-4
votes
1answer
311 views

Integrate R with VB.NET [duplicate]

Possible Duplicate: how to communicate with R through VBnet( or C#) I want to generate a random number from log-normal and triangular distribution in VB.NET. To do so I thought of ...
0
votes
0answers
138 views

Runs Test and Chi Square Distribution

I want to identify random data by applying some tests to the observed byte stream. I used the chi square test already on a frequency analysis, which works fine. To reduce the false-positive rate I ...
0
votes
5answers
221 views

Is Pythons random.randint statistically random?

So I'm testing an calculating the probabilities of certain dice rolls, for a game. The base case if that rolling one 10sided die. I did a million samples of this, and ended up with the following ...
0
votes
0answers
19 views

Random of fixed effect in meta-analysis [closed]

I am performing a meta-analysis but wondering if should we consider the "study" ( I have 80 studies) as a fixed or random effect? Could someone please help me?
1
vote
1answer
78 views

Generate ints over a binomial distribution with a given mean

I'm writing code to create simulated behavior. As part of this, I know I want to simulate X events per minute. I don't want to just do x/60 events per second. Instead, I'd like to distribute these ...
3
votes
2answers
92 views

Integer Payout Function (insert “expected” value, output a distribution maximized for “fun”)

We have several instances in our game where we want to randomize a "payout" given an expected value of output. For instance, instead of rewarding "10 credits" every single time we would want to reward ...
1
vote
1answer
103 views

Pick a random item from a list based on the distance from a point?

I am writing a game server in Python with the help of Twisted. I have a Map class which generates the map for the game. In my game I have a central point, with rings of items every certain distance ...
2
votes
3answers
222 views

Truncating SciPy random distributions

Does anyone have suggestions for efficiently truncating the SciPy random distributions. For example, if I generate random values like so: import scipy.stats as stats print stats.logistic.rvs(loc=0, ...
4
votes
2answers
275 views

Java: Generate Random Numbers following a user defined Function

Thanks in advance for any help. I need to create random numbers which follow a user defined function in Java. The general way of doing this is through applying an uniform distribution to the integral ...
0
votes
1answer
342 views

solving standard deviation for a gaussian random variable

So lets assume I have a Gaussian random number generator that takes 2 parameters std deviation and mean, X(d,m). What I want to do is specify the std deviation for the number generator such that i get ...
5
votes
2answers
456 views

ORDER BY RAND() seems to be less than random

I have a fairly simple SQL (MySQL): SELECT foo FROM bar ORDER BY rank, RAND() I notice that when I refresh the results, the randomness is suspiciously weak. In the sample data at the moment there ...
0
votes
1answer
87 views

How many samples should be taken to capture the mean and variance of the original set with given error? [closed]

I have a set S of N real numbers. I wanna calculate the mean m variance v of S. But since N is too large, I do not want to use all of the numbers. Instead, I would like to sample n numbers uniformly ...
4
votes
2answers
505 views

Uniform distribution from a fractal Perlin noise function in C#

My Perlin noise function (which adds up 6 octaves of 3D simplex at 0.75 persistence) generates a 2D array array of doubles. These numbers each come out normalized to [-1, 1], with mean at 0. I clamp ...
1
vote
1answer
210 views

Gaussian random distribution in Postgresql

I have a table of let's say 250 URLs : create table url { id serial, url varchar(64) } These URLs correspond each to a website. Each of the websites have a different popularity. Let's say that ...
1
vote
3answers
217 views

Random function returning number from interval

How would you implement a function that is returning a random number from interval 1..1000 in the case there is a number N determining the chance of reaching higher numbers or lower numbers? It ...
1
vote
2answers
4k views

Generate random numbers in specific range

I want to generate Gaussian random numbers in MATLAB for long program which runs for many number of iterations. I used randn function, but is there a way to avoid negative results and generate random ...
0
votes
1answer
203 views

drawing random number from a standard normal distribution using the standard rand() functions

So most programming languages contain a rand() functionality whereby you can generate a random number between 0 to 1.... My question is, is there a way to manipulate this standard rand() ...
5
votes
1answer
871 views

PHP: Random number from a normal distribution

In PHP, can I get a set of random numbers which conform to a specified mean and standard deviation?
0
votes
0answers
120 views

Random values consistent with a best-fit curve

I'm contemplating the generation of test data with interesting distributions. I understand methods for the generation of uniform distribution and normal distribution, but how can I transform an ...
5
votes
7answers
2k views

Python code for the coin toss issues

I've been writing a program in python that simulates 100 coin tosses and gives the total number of tosses. The problem is that I also want to print the total number of heads and tails. Here's my ...
5
votes
4answers
1k views

Ruby: Using rand() in code but writing tests to verify probabilities

I have some code which delivers things based on weighted random. Things with more weight are more likely to be randomly chosen. Now being a good rubyist I of couse want to cover all this code with ...
0
votes
4answers
365 views

Python: Find a random method that best fit list of values

I have a list of many float numbers, representing the length of an operation made several times. For each type of operation, I have a different trend in numbers. I'm aware of many random generators ...
0
votes
1answer
1k views

Bimodal distribution characterization algorithm?

What algorithms can be used to characterize an expected clearly bimodal distribution, say a mixture of 2 normal distributions with well separated peaks, in an array of samples? Something that spits ...
2
votes
2answers
449 views

C++, how do I randomly generate an array of doubles with a mean of 0 and standard deviation of 1?

Hey guys, for my homework assignment I'm to generate a set of numbers to a fixed point that allows for the mean to be 0 and the standard deviation to be 1. I've been mainly dealing with an array of ...
14
votes
3answers
683 views

Is there any software for testing sequences for non-randomness in Java?

I looking for a program or library in Java capable of finding non-random properties of a byte sequence. Something when given a huge file, runs some statistical tests and reports if the data show any ...
1
vote
4answers
126 views

What sources can produce random data

Here are some. What are some other? * timing of radioactive decays * recording background noise into .wav files * live video files * session logs from chat lines * keystroke latencies for typed text ...
8
votes
4answers
1k views

Randomly selecting an element from a weighted list

I have a list of 100,000 objects. Every list element has a "weight" associated with it that is a positive int from 1 to N. What is the most efficient way to select a random element from the list? I ...
2
votes
4answers
4k views

Python: Selecting numbers with associated probabilities [duplicate]

Possible Duplicates: Random weighted choice Generate random numbers with a given (numerical) distribution I have a list of list which contains a series on numbers and there associated ...
2
votes
4answers
415 views

Power-law distribution in T-SQL

I basically need the answer to this SO question that provides a power-law distribution, translated to T-SQL for me. I want to pull a last name, one at a time, from a census provided table of names. ...
5
votes
1answer
2k views

Generate Random Number Based on Beta Distribution using Boost

I am trying to use Boost to generate random numbers according to the beta distribution using C++. I have seen many examples online for generating random numbers according to distributions in ...
5
votes
4answers
436 views

Determining the similarity between two random number generators

Suppose that I have two random number genertors RNG-A and RNG-B, such that: They both produce random, non-infinite floating point numbers when called I can call the generators repeatedly and ...
1
vote
2answers
289 views

Biased random in SQL?

I have some entries in my database, in my case Videos with a rating and popularity and other factors. Of all these factors I calculate a likelihood factor or more to say a boost factor. So I ...
2
votes
4answers
329 views

How to get make stats in constant memory

I have a function, which creates some random numerical results. I know, that the result will be an integer in a (small, a - b approx 50) range a, b. I want to create a function which execute the above ...
1
vote
2answers
880 views

Generating samples from the logistic distribution

I am working on some statistical code and exploring different ways of creating samples from random distributions - starting from a random number generator that generates uniform floating point values ...

1 2