Tagged Questions

18
votes
6answers
490 views

How can I generate N random values that sum to predetermined value?

I need your help with a little problem. I have four labels and I want to display on them random value between 0 to 100, and the sum of them must be 100. This is my code : private void ...
17
votes
6answers
7k views

Generating a Random Decimal in C#

How can I get a random System.Decimal? System.Random doesn't support it directly.
13
votes
7answers
8k views

How Random is System.Guid.NewGuid()?

I know this may sounds like a pointless question, but hear me out... I basically want to know if I can trust the GUID to generate a value which will be unique 100% of the time and impossible to ...
12
votes
16answers
3k views

Generate a series of random numbers that add up to N in c#

How do I generate 30 random numbers between 1-9, that all add up to 200 (or some arbitrary N), in C#? I'm trying to generate a string of digits that can add together to be N.
12
votes
3answers
5k views

Pros and cons of RNGCryptoServiceProvider

What are the pros and cons of using System.Security.Cryptography.RNGCryptoServiceProvider vs System.Random are. I know that RNGCryptoServiceProvider is 'more random', i.e. less predictable for ...
12
votes
6answers
4k views

Random Gaussian Variables

does someone of you know if there is a class in the standard library of .net, that gives me the functionality to create random variables that follow a gaussian distribution? Greets Sebastian
10
votes
4answers
255 views

What does Random(int seed) guarantee?

I'm working on a project, that relies assigning users random (nothing fancy, just uniformly) subsets of a larger set. Each user has a unique identifier from a set isomorphic to integers. There are two ...
9
votes
8answers
2k views

How Random is System.Guid.NewGuid()? (Take two)

Before you start marking this as a duplicate, read me out. The other question has a (most likely) incorrect accepted answer. I do not know how .NET generates its GUIDs, probably only Microsoft does, ...
9
votes
11answers
4k views

Why use the C# class System.Random at all instead of System.Security.Cryptography.RandomNumberGenerator?

Why would anybody use the "standard" random number generator from System.Random at all instead of always using the cryptographically secure random number generator from ...
8
votes
2answers
263 views

Weird Random Number Bug In .Net

I'm sure I'm doing something wrong; but this has been driving me crazy for a while now. I've made a small Silverlight game (an old Galaxian clone). When the game starts ~90% of the time, a bunch of ...
7
votes
6answers
617 views

Open Source Math Library for F#?

Can anyone recommend a good math library for use with F#? I am looking for the moment for something with statistical distributions, but obviously as needs grow, a fuller library will be useful. ...
6
votes
5answers
338 views

How can I get a random number from atmospheric noise?

I had a discussion recently about looking for a mehtod to generate truly random numbers. The discussion ended up talking about using atmospheric noise. Has anyone done this? What is involved in the ...
6
votes
8answers
1k views

Weighted Random Number Generation in C#

Question How can I randomly generate one of two states, with the probability of 'red' being generated 10% of the time, and 'green' being generated 90% of the time? Background Every 2 second either ...
6
votes
7answers
281 views

What is the best way of randomly re-arranging a list of items in c#?

I have a list of objects and I want to reorder them randomly on each request. What is the best way of doing this?
5
votes
4answers
190 views

Concurrency issues with Random in .Net?

I've debugging some problem with a Paint.Net plugin and I've stumbled with some issue with the Random class, when several threads call a method from a single instance. For some strange reason, it ...
5
votes
13answers
1k views

Generate Random Unique Code

I need to generate a nine digit numeric code (random preferably) which is unique for a given day (same number cannot be generated again on the same day). I was thinking of using HHMMSSmmm (hours, ...
5
votes
2answers
246 views

Securely generating a uniformly random BigInteger

I want to securely generate a random number in the range [0, N), where N is a parameter. However, System.Security.Cryptography.RandomNumberGenerator only provides a GetBytes() method to fill an array ...
5
votes
4answers
404 views

How to implement a random number generator that is not random?

I need a random number generator that generates various number between n and m, but no with a equal probability. I want to set a value x between n and m where the possibility is the highest: Is ...
5
votes
3answers
404 views

Is RNGCryptoServiceProvider as good as a hardware RNG?

I'm attempting to work out whether a hardware RNG is actually any safer than RNGCryptoServiceProvider. Given that randomness from RNGCryptoServiceProvider is provided using various system and user ...
5
votes
6answers
716 views

How deterministic Are .Net GUIDs?

Yesterday I asked Are GUIDs generated on Windows 2003 safe to use as session IDs? and the answer combined with combined with this article GUIDs are globally unique, but substrings of GUIDs aren't ...
4
votes
2answers
110 views

Is the Random.Next code contract incorrect?

I've installed a plugin (Code Contract Editor Extensions by Microsoft) which displays all code contracts for .NET. When I look at the contract for Random.Next it says ensures result <= maxValue ...
4
votes
6answers
314 views

Why is my Random number generator seeding both arrays with the same numbers?

I'm using a method to create two new int arrays with random numbers, but the two array contains exactly the same numbers. Why is this happening? static void Main(string[] args) { ...
4
votes
1answer
130 views

Why use hex for array indexes

I was recently using .net reflector to look at some DLL files, and I noticed one was using hex instead of decimal for its array indexes. public Random(int Seed) { this.SeedArray = new int[0x38]; ...
4
votes
6answers
326 views

Why isn't Random() random? [closed]

Possible Duplicate: Why does this Random Number Generator not random? I have this test program: static void Main(string[] args) { var randomNumbers = new Dictionary<int, int>(); ...
4
votes
3answers
581 views

How can I get a random time between Now and some previous time point (eg. 1 hour ago)?

I'm trying to make an extension method that allows me to create a random time between Now and some user requested historical time point in the form of a TimeSpan. For example : a random time between ...
4
votes
6answers
649 views

why does this method return the same random string each time?

I need to create a block of unique lines to test a different project im working on. so i created a simple program to generate a random string of X length. The issue is that if i call it once i get a ...
4
votes
4answers
2k views

How random is System.Random in .net 3?

I am currently writing a simple password generator (C#). For that I need some random Numbers. Is it OK to simply use the Random Class that ships with .NET or are there any known problems with that?
4
votes
5answers
1k views

System.Random keeps on returning the same value

I am using a System.Random object which is instantiated with a fixed seed all thoughout the application. I am calling the NextDouble method and after some time passed I am getting 0.0 as result. Is ...
3
votes
6answers
76 views

Can a List.Sort using a randomized Comparison delegate run infinitely?

I'm investigating and performance testing various ways of randomizing ordered collections, and I was looking at the option of passing a Comparison delegate that just randomly returns the comparison ...
3
votes
2answers
619 views

Generate a random number in a Gaussian Range?

I want to use a random number generator that creates random numbers in a gaussian range where I can define the median by myself. I already asked a similar question here and now I'm using this code: ...
3
votes
4answers
181 views

Which of these algorithm is better in performance and order for generating N unique random number in 1..n range?

1 Take an array of n elements: {1, 2, 3, .... n} Shuffle the array using any of the standard algorithms of randomly shuffling arrays. The first N elements of the modified array is what you are ...
3
votes
1answer
172 views

Is it possible to use NBuilder to Build a collection of random strings?

pretty simple question: can I use NBuilder to create a collection of x number of random strings? I was trying... // NOTE: Tags need to be lowercase. return Builder<string> ...
3
votes
2answers
121 views

What could be causing a deadlock or otherwise causing this concurrency test to inconsistently fail?

I've been fiddling around with CHESS, which seems like an incredibly useful tool. However, ironically, I seem to be dealing with a Heisenbug in one of my test methods. The results reported by CHESS ...
3
votes
4answers
298 views

Algorithm to generate a random number? Don't use System.Random

Had there been no System.Random class, how would have you generated a random number? Are there any known algorithms or have you guys ever designed one?
3
votes
3answers
487 views

How do I generate a set of random strings in a C# program so that they are not trivially predicted?

I faced a following problem: generate N unique alphanumeric strings from a restricted alphabet. Here's my solution in C#: string Alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; Random generator = ...
3
votes
5answers
1k views

select random file from directory

Any suggestions on how to improve this method? I am currently using it to select a single wallpaper from a directory of wallpapers I know your not supposed to use arraylist anymore but i couldnt ...
3
votes
5answers
546 views

Generate User Friendly Codes

I am researching methods to generate a random human friendly code but not (easily) guessable. This will be used to give away prizes (think unique discount codes). We are to generate about 50k. Are ...
3
votes
3answers
1k views

How to get random double value out of random byte array values?

I would like to use RNGCryptoServiceProvider as my source of random numbers. As it only can output them as an array of byte values how can I convert them to 0 to 1 double value while preserving ...
2
votes
2answers
88 views

.NET Randomnumber generation - automatic seed

I am using a random number generator in my application. However, sometimes it hapeens to return exactly same value. My research shows that default Random constructor takes system time as seed. When ...
2
votes
3answers
163 views

Generate Random Number in .NET without using any Inbuilt Functions

I was wondering how the Random functions in every programming language works so I want to generate a number by myself i.e. I don't want to use any inbuilt classes or functions.
2
votes
2answers
130 views

“Level Generation” algorithm for Mad Virus game

I'm making this game on .NET (link: http://www.bubblebox.com/play/puzzle/539.htm ). Everything is fine, except that I don't know how to generate a level that can be solved within N turns. A similar ...
2
votes
3answers
125 views

Do all the numbers have equal probability to be returned on every Random.Next() call?

Is the probability of Random.Next() to return x the next time it's called lower than its probability of returning y if it has just returned x?
2
votes
3answers
1k views

RNGCryptoServiceProvider - Random Number Review

While looking for best attempts at generating truly random numbers, I stumbled upon this code example. Looking for opinions on this snippet. using System; using System.Security.Cryptography; ...
2
votes
4answers
602 views

Random not that random

I am using Random to generate a sequence of random number. I am constructing the random object just once and then inside the loop generating the random values (300 of them). The problem is that once I ...
2
votes
5answers
2k views

Generate N random and unique numbers within a range

What is an efficient way of generating N unique numbers within a given range using C#? For example, generate 6 unique numbers between 1 and 50. A lazy way would be to simply use Random.Next() in a ...
2
votes
1answer
237 views

Random number generator returning zeros

I have an ASP.NET application that relies on the Random class to generate a pseudo-random string. It uses the following code (this is part of a larger piece of sample code provided by Google for apps ...
2
votes
4answers
135 views

Distributed computing with different random number generators

I have a computation/simulation system with one master server and (potentially) many clients (workers). All of them are working with the same data but need random numbers for the computation. What ...
2
votes
3answers
419 views

Random Linq Query

how I can get a random row from a selection in my linq query? I tried: Bot bot = (from a in dc.Bot select a).OrderBy(x => Guid.NewGuid()).First(); But doesn't work, I ever get the ...
2
votes
6answers
474 views

Random number clashes with same .Net code in different processes

Before I start, I want to point out that I'm pretty sure this actually happened. All my logs suggest that it did. I'd like to know whether I'm wrong and this is impossible, whether it's just ...
2
votes
7answers
1k views

Is using a GUID a valid way to generate a random string of characters and numbers? [closed]

Possible Duplicate: How Random is System.Guid.NewGuid()? Based on this question I would like to know if using a GUID to generate a random string of characters and numbers has any flaws in it? ...

1 2