Tagged Questions

Monte Carlo methods are stochastic (probabilistic) systems that use many random samples to derive properties of a complex system.

learn more… | top users | synonyms

10
votes
7answers
1k views

Good book for Monte Carlo methods in c++?

Can anybody recommend a good introduction book on Monte Carlo algorithms in c++? Preferably with applications to physics, and even more preferably, the kind of physics being quantum mechanics. ...
9
votes
5answers
537 views

Why use Monte-Carlo method?

When should the Monte-Carlo method be used? For example, why did Joel decide to use the Monte-Carlo method for Evidence Based Scheduling instead of methodically processing all user data for the past ...
8
votes
2answers
526 views

Fast generation of random set, Monte Carlo Simulation

I have a set of numbers ~100, I wish to perform MC simulation on this set, the basic idea is I fully randomize the set, do some comparison/checks on the first ~20 values, store the result and repeat. ...
8
votes
6answers
1k views

How do I generate points that match a histogram?

I am working on a simulation system. I will soon have experimental data (histograms) for the real-world distribution of values for several simulation inputs. When the simulation runs, I would ...
7
votes
7answers
635 views

Where can I learn more about “ant colony” optimizations?

I've been reading things here and there for a while now about using an "ant colony" model as a heuristic approach to optimizing various types of algorithms. However, I have yet to find an article or ...
6
votes
2answers
1k views

Ant colony optimization using .NET

I'm looking for a .NET-Class library or .NET-Framework which implements ant colony optimization. Can you give me any links, resources, etc. about this topic.
6
votes
2answers
547 views

How to use multicores in Ocaml to do Monte Carlo simulations?

Ocaml process can use just one core and in order to use multiple cores I have to run several processes. Are there any Ocaml frameworks to use to parallelize Monte Carlo simulations?
5
votes
2answers
334 views

Binary tree that stores partial sums: Name and existing implementations

Consider a sequence of n positive real numbers, (ai), and its partial sum sequence, (si). Given a number x ∊ (0, sn], we have to find i such that si−1 < x ≤ si. Also we want to be able to change ...
5
votes
8answers
541 views

Choosing random numbers efficiently

I have a method, which uses random samples to approximate a calculation. This method is called millions of times, so its very important that the process of choosing the random numbers is efficient. ...
5
votes
3answers
823 views

Student Project Ideas: Parallel Computing

I've been given a free choice of final project for my software development course, I'm quite interested in attempting a distributed programming task, My initial thought was to create a simple photon ...
5
votes
4answers
807 views

What's the best trick to speed up a monte carlo simulation?

Whenever I run large scale monte carlo simulations in S-Plus, I always end up growing a beard while I wait for it to complete. What are the best tricks for running monte carlo simulations in R? ...
5
votes
4answers
2k views

C# Monte Carlo Incremental Risk Calculation optimisation, random numbers, parallel execution

My current task is to optimise a Monte Carlo Simulation that calculates Capital Adequacy figures by region for a set of Obligors. It is running about 10 x too slow for where it will need to be in ...
5
votes
6answers
2k views

Computing a mean confidence interval without storing all the data points

For large n (see below for how to determine what's large enough), it's safe to treat, by the central limit theorem, the distribution of the sample mean as normal (gaussian) but I'd like a procedure ...
4
votes
3answers
167 views

Algorithm for computing the plausibility of a function / Monte Carlo Method

I am writing a program that attempts to duplicate the algorithm discussed at the beginning of this article, http://www-stat.stanford.edu/~cgates/PERSI/papers/MCMCRev.pdf F is a function from char to ...
4
votes
4answers
104 views

What (else) is wrong with using time as a seed for random number generation?

I understand that time is an insecure seed for random number generation because it effectively reduces the size of the seed space. But say I don't care about security. For example, say I'm doing a ...
4
votes
2answers
180 views

Has your pseudo-random number generator (PRNG) ever not been random enough?

Have you ever written simulations or randomized algorithms where you've run into trouble because of the quality of the (pseudo)-random numbers you used? What was happening? How did you detect / ...
4
votes
3answers
569 views

Probability density function problem, from a paper, implemented using C++, not working as intended

So i'm implementing a heuristic algorithm, and i've come across this function. I have an array of 1 to n (0 to n-1 on C, w/e). I want to choose a number of elements i'll copy to another array. Given ...
4
votes
6answers
961 views

Is there a C# library that will perform the Excel NORMINV function?

I'm running some Monte Carlo simulations and making extensive use of the Excel function NORM.INV using Office Interrop. This functions takes three arguments (probability, average, standard deviation) ...
4
votes
5answers
719 views

Parallel, but slower

I'm using monte carlo method to calculate pi and do a basic experience with parallel programming and openmp the problem is that when i use 1 thread, x iterations, always runs faster than n thread, x ...
4
votes
3answers
245 views

Efficient way to generate random contingency tables?

What is an efficient way to generate a random contingency table? A contingency table is defined as a rectangular matrix such that the sum of each row is fixed, and the sum of each column is fixed, ...
3
votes
1answer
110 views

How to create a more efficient simulation loop for Monte Carlo in R

The purpose of this exercise is to create a population distribution of nutrient intake values. There were repeated measures in the earlier data, these have been removed so each row is a unique person ...
3
votes
4answers
107 views

picking without replacement in java

I often* find myself in need of a data structure which has the following properties: can be initialized with an array of n objects in O(n). one can obtain a random element in O(1), after this ...
3
votes
2answers
328 views

3D Affine transformation problem in raytracing

All, I am writing a rather non conventional ray tracer to calculate heat transfer properties of various objects in a scene. In this ray tracer random rays are shot from the surface of my primitive ...
3
votes
3answers
171 views

How can I efficiently model the sum of Bernoullli random variables?

I am using Perl to model a random variable (Y) which is the sum of some ~15-40k independent Bernoulli random variables (X_i), each with a different success probability (p_i). Formally, Y=Sum{X_i} ...
3
votes
1answer
680 views

Thread-safe random number generation for Monte-Carlo integration

Im trying to write something which very quickly calculates random numbers and can be applied on multiple threads. My current code is: /* Approximating PI using a Monte-Carlo method. */ #include ...
3
votes
5answers
586 views

Simulating “Wheel of fortune” (Monte Carlo Simulation Hit or Miss Method)

I'm trying to make a randomizer that will use the Monte Carlo Hit or Miss Simulation. I have a Key-Value pair that represents the ID and the probability value: ID - Value 2 - 0.37 1 - 0.35 4 - 0.14 ...
2
votes
2answers
256 views

Matlab: How to generate a 4x1 matrix of random variables, assuming a 4x4 correlation matrix?

I start with 4 time series, labelled A, B, C, D. I generate the following: A 4x1 matrix of means. A 4x1 matrix of standard deviations. A 4x4 correlation matrix, by taking 30 samples from each time ...
2
votes
1answer
312 views

Using OpenMP to calculate the value of PI

I'm trying to learn how to use OpenMP by parallelizing a monte carlo code that calculates the value of PI with a given number of iterations. The meat of the code is this: int chunk = CHUNKSIZE; ...
2
votes
3answers
223 views

Monte carlo on GPU

Today I had a talk with a friend of mine told me he tries to make some monte carlo simulations using GPU. What was interesting he told me that he wanted to draw numbers randomly on different ...
2
votes
1answer
780 views

How to vectorize a random walk simulation in Matlab

I am rewriting a monte carlo simulation model in Matlab with an emphasis on readability. The model involves many particles (represented as (x,y,z)) following a random walk over a small set of states ...
2
votes
1answer
119 views

Getting a subroutine to return a pointer referencing an array and then dereferencing it in main (in C)

Hiya im trying to write a code for basic 1D Monte-Carlo integration. To do so I need a list of pseudo-random numbers which I can then input into a function (stored in another subroutine). I've given ...
2
votes
1answer
163 views

Help with 2 quetions about randomized algoritms

I an now learning the Las Vegas and Monte Carlo algorithms myself,and have two questions may be simple but I can not answer them,if someone can help me...Thanks in advance Consider a Monte Carlo ...
2
votes
1answer
182 views

R: MCMClogit confusion

Could anybody explain to me why simulatedCase <- rbinom(100,1,0.5) simDf <- data.frame(CASE = simulatedCase) posterior_m0 <<- MCMClogit(CASE ~ 1, data = simDf, b0 = 0, B0 = 1) always ...
2
votes
5answers
2k views

C# Mersenne Twister random integer generator implementation (SFMT) monte carlo simulation

So far I've been using the C# Mersenne Twister found here to generate random numbers: http://www.centerspace.net/resources.php I just discovered SFMT which is supposed to be twice as fast here: ...
2
votes
3answers
2k views

Finding PI digits using Monte Carlo

I have tried many algorithms for finding π using Monte Carlo. One of the solutions (in Python) is this: def calc_PI(): n_points = 1000000 hits = 0 for i in range(1, n_points): x, ...
1
vote
1answer
33 views

Monte Carlo Tree Searching UCT implementation

Can you explain me how to build the tree? I quite understood how the nodes are chosen, but a nicer explanation would really help me implementing this algorithm. I already have a board representing ...
1
vote
1answer
94 views

Monte Carlo Localization example

I want to implement Monte Carlo Localization in a project I'm doing. The first thing I did is I tried to implement it in a virtual robot navigating a 2D world. Right now the program is really slow, ...
1
vote
1answer
39 views

Handling variables in function with parallel spawning in Python

I have a Monte Carlo simulator that has a calculation function it calls many (millions or more) times in a loop. In order to speed this up, I would like split it into multiple parallel thread calls ...
1
vote
5answers
200 views

Looking for a way to optimize this algorithm for parsing a very large string

The following class parses through a very large string (an entire novel of text) and breaks it into consecutive 4-character strings that are stored as a Tuple. Then each tuple can be assigned a ...
1
vote
2answers
104 views

Compare and Contrast Monte-Carlo Method and Evolutionary Algorithms

What's the relationship between the Monte-Carlo Method and Evolutionary Algorithms? On the face of it they seem to be unrelated simulation methods used to solve complex problems. Which kinds of ...
1
vote
5answers
172 views

How do I most effectively prevent my normally-distributed random variable from being zero?

I'm writing a Monte Carlo algorithm, in which at one point I need to divide by a random variable. More precisely: the random variable is used as a step width for a difference quotient, so I actually ...
1
vote
1answer
118 views

Find nucleus involved in nCapture process in Geant4

I'm trying to determine the target nucleus in an (n,gamma) reaction in Geant4. I have been unable to extract this information. The only place I have found it to be stored is in G4IsoParticleChange ...
1
vote
1answer
95 views

Random Number Generation with Well44497a in C++

Sorry to bother again, but as I am new C++ I am having a lot of weird and silly problems. I am programing a MCMC method. I read in this forum that the WELL RNG was a good alternative to generate ...
1
vote
1answer
460 views

VBA Monte Carlo Simulation - Repair Time Generator (Lognormally Distributed)

my name is Rik and I'm a 6-sigma green belt, and I've created a Monte-Carlo Simulation of an Aircraft Engine repair facility. I'm currently doing a 6-sigma project on in Excel VBA. I simply scaled ...
1
vote
3answers
244 views

c++ multithread optimization

in my code I have 2/4 threads performing montecarlo simulations. Each of them runs a number of experiments and they all collect the results into a stl vector. My question is this: suppose each thread ...
1
vote
1answer
208 views

How can I get started with Monte Carlo simulations for financial data in Perl?

I need to create a Monte Carlo simulator for some financial transactions. The inputs would be: the average percent of transactions that end up profitable the average profit per transaction the ...
1
vote
4answers
333 views

Best seed for parallel process

I need to run a MonteCarlo simulations in parallel on different machines. The code is in c++, but the program is set up and launched with a python script that set a lot of things, in particular the ...
1
vote
6answers
920 views

Uniform random (Monte-Carlo) distribution on unit sphere

I need a clarification with algorithm generating random values for my pet ray-tracer. I emit rays from one point. And I have the problem with distribution of these rays: I need the distribution to be ...
1
vote
4answers
746 views

How to determine a formula for execution time given quantitative data, Excel, trendlines, monte carlo simulation

Can I get your help on some Maths and possibly Excel? I have benchmarked my app increasing the number of iterations and number of obligors recording the time taken in seconds with the following ...
0
votes
1answer
45 views

Comparing SFMT with Mersenne Twister and Ran2

I am trying to optimise a C-based code used for bioinformatic purposes. It uses Monte Carlo iterations for major part of the calculations. It earlier used ran2() for generating random numbers, which ...

1 2