Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Where is monte carlo simulation used and how it differs ?

Status
Not open for further replies.

bilalkadri

Member level 2
Member level 2
Joined
Oct 12, 2004
Messages
49
Helped
2
Reputation
4
Reaction score
1
Trophy points
1,288
Activity points
329
monte carlo simulation

can any one help me exactly where is monte carlo carlo simulation used and how it is differnt from other simulation methods.
 

Re: monte carlo simulation

You need a good lecture on this topics. The literature is huge!

Monte Carlo simulation is mainly used in statistics nowadays!

bilalkadri said:
can any one help me exactly where is monte carlo carlo simulation used and how it is differnt from other simulation methods.
 

Re: monte carlo simulation

I have been thinking about the question for a while, still not quite sure what other simulation methods you referred to.

So I'm going to give you a rough idea of Monte Carlo method.

Monte Carlo simulation method is the simulation that involves random sampling. It can be used to approximate both deterministic or stochastic values, such as integration, error probability.

It is different from "deterministic" simulations (the ones that you create mathematical model and when injecting some inputs you know exactly the output ) in the way that it randomly samples input values and approximates the desired outputs using stochastic convergence due to the law of large numbers.

For example, if we want to calculate the value of an integration, instead of using numerical method like trapezoidal, we can approximate it using average of the random samples.
Code:
                          I  =  integrate x from a to b  of g(x)
    can be approximated by 
                           (b-a)*1/N * {sum i from 1 to N   of g(Xi) }
    where Xi  are the values randomly selected between a and b  in a
            uniform fashion


Monte Carlo is used to approximate nonrandom values to avoid heavy computation. It is also used in stochastic systems such as finding some probability or some expected values. Ulam invented the method when he was trying to find out the chance that a solitaire card game will play out successfully.
 

Re: monte carlo simulation

Now Monte Carlo simulation has been used in many field. Such as solid state physics, semiconductor device simulation, etc.

You could find a textbook and read it in detail.
 

monte carlo simulation

I found out, when I did literature review (bootstrap method), the following terms/phrases always appeared together:

1) Bootstrap
2) Non-parametric Statistic
3) Monte Carlo modelling

I wonder how close the background theory of those terms/phrases are.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top