Monte Carlo Methods Flashcards

1
Q

what are monte carlo methods

A

methods for generating random variables –
i.e. samples of numbers which
behave as if they are drawn
from some particular pdf (e.g.
uniform, Gaussian, Poisson etc).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

algorithms only generate pseudo-random numbers which are

A

very long (deterministic) sequences of numbers which are
approximately random (i.e. no discernible pattern).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

the better the random number generator, the

A

better it approximates U[0,1]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

phase portraits

A

scatterplots of the ith value against against the (i+1)th value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

we can compute the auto-correlation function where j is known as

A

the lag

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

if the sequence is uniformly random, we expect

A

p(j)=1 for j=0
p(j)=0 otherwise

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

generating random numbers from other pdfs can be done by

A

transforming random numbers drawn from simpler pdfs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

probability integral transform steps

A
  1. sample a random variable y~U[0,1]
  2. compute x such that y=p(x)
  3. then x~p(x) ie x is drawn from the pdf corresponding to the cdf
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

MCMC provides a

A

simple metropolis algorithm for generating random samples of points from L(a,b)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

MCMC steps

A
  1. sample random initial point
  2. create a new pdf Q called the proposal density on p1
  3. sample tentative new point P’ from Q
  4. compute R
  5. if R>1 we accept next point
  6. If R<1 we reject
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

markov chain

A

acceptance probability depends only on the previous point

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

If the variance of the proposal density is too small (σ=0.01) then

A

not all of the distribution is sampled

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

If the variance of the proposal density is too large (σ=50) then

A

values jump around significantly

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

if the variance of the proposal density is correct (σ=1) then

A

the entire distribution is sampled

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly