Monte Carlo Simulation: Exploring Error, Accuracy and Variance

stn
Messages
8
Reaction score
0
Hello,
1. Does anybody know which book that gives a good explanation about monte carlo simulation?
I've read many tutorials, it mentions about its error, accuracy, variance.
But, many of them don't actually show, how to perform monte carlo simulation.

Questions
2. Is it actually the same as generating random numbers? Gaussian distribution?
so, it is actually random variables with normal distribution?


thanks
 
Physics news on Phys.org
No. Monte Carlo simulation is a very large subject that is studied extensively in Operations Research. It is much broader than just generating random numbers of a known distribution. It includes simulating any situation where randomness has a significant effect (traffic simulation, combat, queueing theory, spares management, etc.) Some (admittedly old) books to give you an idea of the breadth of the subject are "Monte Carlo Methods" by Hammersley and Handscomb and "Computer Simulation Techniques" by Naylor, Balintfy, Burdick, and Chu. The first emphasizes the math and the second emphasized the computer implementation (given the limited simulation languages at that time). Maybe someone can suggest more recent references.
 
Last edited:
stn said:
Hello,
1. Does anybody know which book that gives a good explanation about monte carlo simulation?

Can you write computer programs? "Monte-Carlo simulation" is very general subject. Suppose your wrote a computer program which had steps in it where the computer drew pseudo-random numbers to determine the outcome. The program might simulate physics, economics or just a game. Such a program is a "Monte-Carlo simulation" and if you ran it many times to get the statistics of its output, you could say you were using "Monte-Carlo simulation".

2. Is it actually the same as generating random numbers? Gaussian distribution?
so, it is actually random variables with normal distribution?

Monte-Carlo simulations on computers do use functions that generate pseudo-random numbers. The numbers are not always from normal distributions. The usual procedure is to generate pseudo-random numbers from a uniform distribution and then, if another type of distribution is desired, apply an algorithm to these uniformly distributed numbers to produce other distributions.
 
hi Stephen,
Thanks for the explanation, it helps me a lot.
I did lots of simulation using different distributions such as Normal distribution & Rayleigh distribution in Matlab to obtain Bit error rate in wireless telecommunication without realizing that actually I've monte carlo simulation.
Only few papers mention monte carlo simulation, the rest just mention add this AWGN or Rayleigh distribution, that's why i am not clear myself.
 
Namaste & G'day Postulate: A strongly-knit team wins on average over a less knit one Fundamentals: - Two teams face off with 4 players each - A polo team consists of players that each have assigned to them a measure of their ability (called a "Handicap" - 10 is highest, -2 lowest) I attempted to measure close-knitness of a team in terms of standard deviation (SD) of handicaps of the players. Failure: It turns out that, more often than, a team with a higher SD wins. In my language, that...
Hi all, I've been a roulette player for more than 10 years (although I took time off here and there) and it's only now that I'm trying to understand the physics of the game. Basically my strategy in roulette is to divide the wheel roughly into two halves (let's call them A and B). My theory is that in roulette there will invariably be variance. In other words, if A comes up 5 times in a row, B will be due to come up soon. However I have been proven wrong many times, and I have seen some...
Back
Top