Tagged Questions

This tag is for questions pertaining to random numbers, whether pseudo random or truly random.

learn more… | top users | synonyms (9)

455
votes
24answers
77k views

Understanding “randomness”

I can't get my head around this, which is more random? rand() OR rand() * rand() I´m finding it a real brain teaser, could you help me out? EDIT: Intuitively I know that the mathematical ...
221
votes
47answers
33k views

Expand a random range from 1-5 to 1-7

Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7. What is a simple solution? What is an effective solution ...
144
votes
5answers
109k views

Generating Random Numbers in Objective-C

I'm a java head mainly, and I want a way to generate a pseudo-random number between 0 and 74. In java I would use the method: Random.nextInt(74) I'm not interested in a discussion about seeds or ...
111
votes
15answers
124k views

Java: generating random number in a range

I am trying to generate a random number with Java, but random in a specific range. For example, my range is 5-10, meaning that 5 is the smallest possible value the random number can take, and 10 is ...
107
votes
37answers
6k views

Need for predictable random generator

I'm a web-game developer and I got a problem with random numbers. Let's say that a player has 20% chance to get a critical hit with his sword. That means, 1 out of 5 hits should be critical. The ...
92
votes
25answers
32k views

How best to generate a random string in Ruby

I'm currently using the following to generate an 8 character pseudo random upper case string [A-Z] value = ""; 8.times{value << (65 + rand(25)).chr} but it looks junky, and since it isn't a ...
88
votes
5answers
65k views

How to get a random number in Ruby?

In Ruby, how do you generate a random number between 0 and n? In .NET you can create a Random object, does something like this exist for Ruby?
78
votes
1answer
18k views

How do I randomly select an item from a list using Python?

Let's say, as an example, I have the following list: foo = ['a', 'b', 'c', 'd', 'e'] What is the best way to retrieve an item at random from this list?
61
votes
19answers
28k views

How to request a random row in SQL?

What is the best way to request a random row in pure SQL?
51
votes
12answers
33k views

c# random string generator

I've developed a random string generator but it's not behaving quite as I'm hoping. My goal is to be able to run this twice and generate two distinct four character random strings. However, it just ...
49
votes
23answers
3k views

Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?

The question posed came about during a 2nd Year Comp Science lecture while discussing the impossibility of generating numbers in a deterministic computational device. This was the only suggestion ...
47
votes
6answers
1k views

How many double numbers are there between 0.0 and 1.0?

This is something that's been on my mind for years, but I never took the time to ask before. Many (pseudo) random number generators generate a random number between 0.0 and 1.0. Mathematically there ...
47
votes
5answers
11k views

Random number generator not working the way I had planned (C#)

This is a very strange problem. Here is my code: //Function to get random number public static int RandomNumber(int min, int max) { Random random = new Random(); return ...
45
votes
8answers
10k views

Is it correct to use JavaScript Array.sort() method for shuffling?

I was helping somebody out with his JavaScript code and my eyes were caught by a section that looked like that: function randOrd(){ return (Math.round(Math.random())-0.5); } coords.sort(randOrd); ...
43
votes
8answers
1k views

What distribution do you get from this broken random shuffle?

The famous Fisher-Yates shuffle algorithm can be used to randomly permute an array A of length N: For k = 1 to N Pick a random integer j from k to N Swap A[k] and A[j] A common mistake that ...
43
votes
20answers
2k views

What is the most secure seed for random number generation?

What are the most secure sources of entropy to seed a random number generator? This question is language and platform independent and applies to any machine on a network. Ideally I'm looking for ...
42
votes
3answers
17k views

python random string generation with upper case letters and digits

I want to generate string with N size. It should be made up of numbers and upper case english letters such as: 6U1S75 4Z4UKK U911K4 How can I achieve this in a pythonic way ? Thanks
39
votes
3answers
2k views

Data structure for loaded dice?

Suppose that I have an n-sided loaded die where each side k has some probability pk of coming up when I roll it. I'm curious if there is good algorithm for storing this information statically (i.e. ...
39
votes
10answers
6k views

Unique random numbers in O(1)?

The problem is this: I'd like to generate unique random numbers between 0 and 1000 that never repeat (I.E. 6 doesn't come out twice), but that doesn't resort to something like an O(N) search of ...
33
votes
4answers
17k views

Random strings in Python 2.6 (Is this OK?)

I've been trying to find a more pythonic way of generating random string in python that can scale as well. Typically, I see something similar to ''.join(random.choice(string.letters) for i in ...
31
votes
1answer
567 views

What's a good one-pass pseudo-random shuffle? [closed]

The Fisher-Yates shuffle gives a nice algorithm to shuffle an array A of length n in a single pass: For k = 1 to n Pick a random integer j from k to n Swap A[k] and A[j] After a single pass ...
30
votes
3answers
1k views

Math.random() returns value greater than one?

While playing around with random numbers in JavaScript I discovered a surprising bug, presumably in the V8 JavaScript engine in Google Chrome. Consider: // Generate a random number [1,5]. var rand5 ...
30
votes
9answers
2k views

Generate a random point within a circle (uniformly)

I need to generate a uniformly random point within a circle of radius R. I realize that by just picking a uniformly random angle in the interval [0 ... 2π), and uniformly random radius in the ...
29
votes
12answers
27k views

Select a random N elements from List<T> in C#

I need a quick algorithm to select a random 5 elements from a generic list. For example, I'd like to get a random 5 elements from a List.
28
votes
11answers
3k views

Make an application that displays text at random that conforms to the specified regex

OK, so in the spirit of Code-Golf, I'm trying out something new here: Code-Bowling. In golf, you try to get the lowest score (smallest application, most elegant, etc). In Bowling, you try to get the ...
26
votes
7answers
800 views

Why do digits 1, 2 and 3 appear so frequently using C rand() function?

What I am trying to do is to generate some random numbers (not necessarily single digit) like 29106 7438 5646 4487 9374 28671 92 13941 25226 10076 and then count the number of digits I get: ...
26
votes
9answers
2k views

How to generate random 'greenish' colors

Anyone have any suggestions on how to make randomized colors that are all greenish? Right now I'm generating the colors by this: color = (randint(100, 200), randint(120, 255), randint(100, 200)) ...
25
votes
9answers
15k views

Select n random rows from SQL Server table

I've got a SQL Server table with about 50,000 rows in it. I want to select about 5,000 of those rows at random. I've thought of a complicated way, creating a temp table with a "random number" column, ...
24
votes
25answers
5k views

What is a good random number generator for a game?

What is a good random number generator to use for a game in C++? My considerations are: Lots of random numbers are needed, so speed is good. Players will always complain about random numbers, but ...
23
votes
20answers
29k views

Picking a random element from a set

How do I pick a random element from a set? I'm particularly interested in picking a random element from a HashSet or a LinkedHashSet, in Java. Solutions for other languages are also welcome.
23
votes
14answers
15k views

Best way to randomize a string array in C#

What is the best way to randomize an array of strings in C#? My array contains about 500 strings and I'd like to create a new Array with the same strings but in a random order.
23
votes
13answers
4k views

How to test randomness (case in point - Shuffling)

First off, this question is ripped out from this question. I did it because I think this part is bigger than a sub-part of a longer question. If it offends, please pardon me. Assume that you have a ...
22
votes
3answers
752 views

What's the benefit of seeding a random number generator with only prime numbers?

While conducting some experiments in Java, my project supervisor reminded me to seed each iteration of the experiment with a different number. He also mentioned that I should use prime numbers for the ...
22
votes
10answers
1k views

An interview question: About Probability

An interview question: Given a function f(x) that 1/4 times returns 0, 3/4 times returns 1. Write a function g(x) using f(x) that 1/2 times returns 0, 1/2 times returns 1. My implementation is: ...
22
votes
6answers
1k views

Code Golf: Ghost Leg

The challenge The shortest code by character count that will output the numeric solution, given a number and a valid string pattern, using the Ghost Leg method. Examples Input: 3, "| | | | | | | | ...
22
votes
9answers
16k views

Most efficient way to randomly “sort” (Shuffle) a list of integers in C#

I need to randomly 'sort' a list of integers (0-1999) in the most efficient way possible. Any ideas? Currently, I am doing something like this: bool[] bIndexSet = new bool[iItemCount]; for (int ...
22
votes
10answers
7k views

best way to pick a random subset from a collection?

I have a set of objects in a Vector from which I'd like to select a random subset (e.g. 100 items coming back; pick 5 randomly). In my first (very hasty) pass I did an extremely simple and perhaps ...
21
votes
5answers
904 views

How can I generate an “unlimited” world?

I would like to create a game with an endless (in reality an extremely large) world in which the player can move about. Whether or not I will ever get around to implement the game is one matter, but I ...
21
votes
6answers
2k views

How does a cryptographically secure random number generator work?

I understand how standard random number generators work. But when working with crytpography, the random numbers really have to be random. I know there are instruments that read cosmic white noise to ...
21
votes
12answers
3k views

Python: Random is barely random at all?

I did this to test the randomness of randint: >>> from random import randint >>> >>> uniques = [] >>> for i in range(4500): # You can see I was optimistic. ... ...
21
votes
13answers
4k views

Generating non-repeating random numbers in Python

Ok this is one of those trickier than it sounds questions so I'm turning to stack overflow because I can't think of a good answer. Here is what I want: I need Python to generate a simple a list of ...
21
votes
10answers
8k views

How random is JavaScript's Math.random?

For 6 years I've had a random number generator page on my website. For a long time, it was the first or second result on Google for "random number generator" and has been used to decide dozens, if not ...
21
votes
24answers
21k views

Create Random Number Sequence with No Repeats

Duplicate: Unique random numbers in O(1)? I want an pseudo random number generator that can generate numbers with no repeats in a random order. For example: random(10) might return 5, 9, 1, ...
21
votes
7answers
27k views

C++ random float

How do I generate random floats in C++? I thought I could take the integer rand and divide it by something, would that be adequate enough?
20
votes
6answers
1k views

Practical Uses of Fractals in Programming

Fractals have always been a bit of a mystery for me. What practical uses (beyond rendering to beautiful images) are there for fractals in the various programming problem domains? And please, don't ...
20
votes
8answers
5k views

Random Python dictionary key, weighted by values

I have a dictionary where each key has a list of variable length, eg: d = { 'a': [1, 3, 2], 'b': [6], 'c': [0, 0] } Is there a clean way to get a random dictionary key, weighted by the length of ...
20
votes
5answers
9k views

Random date in C#

I'm looking for some succinct C# 3 code to generate a random date between Jan 1 1995 and the current date. I'm thinking some solution that utilizes Enumerable.Range somehow may make this more ...
20
votes
12answers
18k views

Converting a Uniform Distribution to a Normal Distribution

How can I convert a uniform distribution (as most random number generators produce, e.g. between 0.0 and 1.0) into a normal distribution? What if I want a mean and standard deviation of my choosing?
19
votes
9answers
639 views

Java: random integer with non-uniform distribution

How can I create a random integer n in Java, between 1 and k with a "linear descending distribution", i.e. 1 is most likely, 2 is less likely, 3 less likely, ..., k least likely, and the probabilities ...
19
votes
3answers
4k views

How do I pick randomly from an array?

I want to know if there is a much cleaner way of doing this. Basically, I want to pick a random element from an array of variable length. Normally, I would do it like this: myArray = ["stuff", ...

1 2 3 4 5 70