Random and Monte Carlo Flashcards

1
Q

What is the caracteristic of pseudo-random numbers ?

A

The are determined by the previous ones

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

Cite a famous pseudo-generator

A

Modulo Generator : x_i =(ax_i-1+c) mod m

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

How can we generate a non uniform distribution ?

A

First by generating N unrelated random number => not efficient.
Or by creating a function to fit that distribution from random numbers

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

What is proportional to the variance ?

A

The uncertainty

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

What is the concept of the Monte Carlo Method ?

A

Add a weight function that acts as f does (big when big)

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

Quadratic Monte Carlo Method can be demonstrated using ?

A

Variable change and limit integral<=>sum

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

What should respect MD integration ?

A

Accuracy in O(\Delta t^4) and 1 force calculation only

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

What is the base formula of the Verlet Method ?

A

r(t+\Delta t) = 2 r(t) - r(t-Delta t) + f(t)/m (\Delta t)^2

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

What is the issue with the Verlet base method a method ?

A

Big number == acc loss

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

What is the Leap-frog Vert Method ?

A

compute r(t+\Delta t)) and v(t+\Delta t/2)

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

What is the Verlet Velocity Formula ?

A

v(t) = (r(t+\∆t)-r(r-∆t))/2∆t-∆t/12m*[f(t+∆t)-f(t-∆t)]+O(∆t^4)

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