Random Walks and Networks

Total Page:16

File Type:pdf, Size:1020Kb

Random Walks and Networks Workshop on Complex Systems, USP São Paulo, December 5th-9th 2011 Tim Evans Random Walks and Networks Page 1 © Imperial College London Outline 1. Notation 2. Random Walks for Model Building 3. Random Walks and Community Detection • Modularity and Vertex Communities • Overlapping Communities 4. Random Walks for Everything 1. Biased Random Walks 2. Random Walks and the Map Equation 5. From Random Walks to Entropy Page 2 © Imperial College London x a z a NOTATION Page 3 © Imperial College London Notation I will focus on Simple Graphs (no values or directions on edges, no multiple edges, no values for vertices) • N = number of vertices in graph • i,j,.. = indices of vertices • E = number of edges in graph • a, b, … = for edge indices N=6 E=8 Page 4 © Imperial College London Notation – degree of a vertex Number of edges connected to a vertex is called the degree of a vertex • k = degree of a vertex • <k> = average degree = (2E / N) Degree Distribution Degree k=2 • n(k) = number of vertices with degree k • p(k) = n(k)/N = probability a random vertex has degree k Page 5 © Imperial College London Notation - Adjacency Matrix The Adjacency Matrix Aij is • 1 if vertices i and j are attached • 0 if vertices i and j are not attached V6 vertices V1 V2 V3 V4 V5 V6 V4 V1 0 1 1 0 0 0 V5 V2 1 0 1 1 0 0 V2 V3 1 1 0 1 1 0 V4 0 1 1 0 1 1 V3 V5 0 0 1 1 0 0 V1 V6 0 0 0 1 0 0 Page 6 © Imperial College London RANDOM WALKS FOR MODEL BUILDING Page 7 © Imperial College London Generalised Random Graphs – The Molloy-Reed Construction [1995,1998] i. Fix N vertices ii. Attach k stubs to each vertex, where k is drawn from given distribution p(k) iii. Connect pairs of stubs chosen at random Page 8 © Imperial College London No Vertex-Vertex Correlations Generalised Random Graphs have given p(k) but otherwise completely random in particular - Properties of all vertices are the same For any given source vertex, the properties of neighbouring vertices independent of properties of the source vertex Page 9 © Imperial College London Random Walks on Random Graphs The degree distribution of a neighbour is not simply p(k) You are more likely to arrive at a high degree vertex than a low degree one k 1 2 p(k | k ) n p(k ) 3 n i k n kn Degree of neighbour kn independent of degree of starting point ki ki Page 10 © Imperial College London Summary of Generalised Random Graphs • These can be reasonable approximations for many theoretical models • Probably not for real world so then use these as a null model. • Calculations with random graphs work because – lack of correlations between vertices – few loops for large sparse graphs, graphs are basically trees • Accessible analytically so can suggest typical behaviour even if very weak e.g. diameter vs N Page 11 © Imperial College London Random Walks for Natural Scale Free Networks Page 12 © Imperial College London Imperial Medical School (URL, 4 weeks, < 3rd Jan 2005) Long PeriodTails 2 (excluding Haldane), degree distribution in Real Data N=14805 <k>=22.95 slope=-2.4 0 0 0.5 1 1.5 2 2.5 3 1.E+00 -1 1 10 100 1000 10000 100000 1.E-01 -2 1.E-02 Imperial Medical -3 log(p(k)) -4 1.E-03 School Web Site -5 1.E-04 Imperial Library Loans (Hook, TSE) p(k) Poission -6 1.E-05 (Hook, Sooman, Warren, TSE) -7 Distribution p(k) 1.E-06 log(k) 1.E-07 Degree distribution, eBay Crawl (max 1000) 1.E-08 Equiv. 1.E-09 Binomial 0 Logged Degree k 0 1 2 3 4 user -1 in -2 degree -3 -4 log p(k) -5 gallery·future-i·com -6 Text -7 [Yule 1925,1944; frequency -8 (Sooman, Warren, TSE) Simon 1955; in TSE -9 Price 1965,1976; Contemporary log k Barabasi, Albert 1999] Physics review Page 13 © Imperial College London All log(k) vs. log(p(k)) except text log(rank) vs. log(freq.) P(k) Growth with Preferential Attachment [Yule 1925, 1944; Simon 1955; Price 1965,1976; Barabasi,Albert 1999 ] 2/(2E) 1. Add new vertex attached to one end of m=½<k> new 5/(2E) edges 2. Attach other ends to existing 4/(2E) vertices chosen with by picking random end of an existing edge chosen 2/(2E) randomly, so probability is Result: P(k) = k / (2E) Scale-Free Preferential Attachment -g “Rich get Richer” n(k) ~ k Page 14 © Imperial College London g=3 P(k) Growth with Preferential Attachment [Yule 1925, 1944; Simon 1955; Price 1965,1976; Barabasi,Albert 1999 ] 2/(2E) P(k) = k / (2E) Preferential Attachment 5/(2E) “Rich get Richer” 4/(2E) Result: Scale-Free Network n(k) ~ k-g g=3 2/(2E) Page 15 © Imperial College London N=200, <k>~4.0, vertex size k Classical Random Scale-Free = Power-Law p(k)~ 1/k3 Diffuse, small degree Tight core of large hubs vertices k =O(ln(N)) 1/2 max kmax=O(N ) Page 16 © Imperial College London Scale-Free in the Real World Attachment probability used was k 1 P(k) pp pr , 2E N a BUT if limk→∞ P(k) k for any a 1 then a power law degree distribution is not produced! Page 17 © Imperial College London Preferential Attachment for Real Networks [Saramäki, Kaski 2004; TSE, Saramäki 2004] 1. Add a new vertex with ½<k> new edges 2. Attach to existing vertices, found by executing a random walk on the network of L steps Start Walk Probability of arriving at a vertex Here number of ways of arriving at vertex = k, the degree Preferential Attachment =3 Page 18 © Imperial College London g (Can also mix in random attachment with probability pr) Preferential Attachment for Real Networks Probability of arriving at a vertex number of ways of arriving at vertex = k, the degree Preferential Attachment g=3 Start Walk Can also mix in random attachment Here with probability pr Page 19 © Imperial College London Naturalness of the Random Walk algorithm • Gives preferential attachment from any network and hence a scale-free network • Uses only LOCAL information at each vertex – Simon/Barabasi-Albert models use global information in their normalisation • Uses structure of Network to produce the networks – a self-organising mechanism e.g. informal requests for work on the film actor’s social network e.g. finding links to other web pages when writing a new one Page 20 © Imperial College London Is the Walk Algorithm Robust? I varied: <d>~5 •Length of walks L=0 •<k> Pure Random Attachment L=1 •Starting point exponential of walks graph L=7 •Length distribution of walks • ….. YES - Good Power Laws but NOT Universal values - 10% or 20% variation Page 21 © Imperial College London RANDOM WALKS AND COMMUNITY DETECTION Vertex Communities Page 22 © Imperial College London Modularity Q [Girvan & Newman 2002] 1. Assign each vertex i to community ci and for each community:- 2. Add the fraction of edges IN community ci 3. Subtract the number of edges in null model • generalised random graph with same degree distribution A k k Qc ij i j k ci ,c j i, j W W W 1 2 3 where W 2E A Page 23 © Imperial College London ij i, j Random Walk Transition Matrix The transition matrix for a simple unbiased random walk on a network is T where the probability of moving from vertex j i j to vertex i is Aij T j ij k j 0.25 i with strength k j Aij Probability of following an edge i from j to any vertex i is 0.25 Page 24 © Imperial College London Random walk as linear algebra Let wi(t) be the number of random walkers at vertex i at time t (or the probability of finding one walker at i ) then the evolution is simply w(t 1) T.w(t) wi (t 1) Tij wj (t) j Page 25 © Imperial College London Equilibrium Equilibrium reached is eigenvector P1 with largest eigenvalue as 1 n 1 1 n w(t ) P1 For simple networks only we have trivial solution k w(t ) P i i i W Page 26 © Imperial College London Modularity as Random Walk [Delvenne et al, 2008,2010] 1. Assign each vertex i to community ci and for each community:- 2. Add fraction of equilibrium walkers remaining in community after one step 3. Subtract fraction of equilibrium walkers in community after infinite number of steps A k k k Qc ij j i j k ci ,c j i, j k j W W W 1 2 3 Page 27 © Imperial College London Modularity for any network 1. Assign each vertex i to community ci and for each community:- 2. Add fraction of equilibrium walkers remaining in community after one step 3. Subtract fraction of equilibrium walkers in community after infinite number of steps A Qc ij P P P k out j i j ci ,c j i, j k j 3 1 2 Page 28 © Imperial College London RANDOM WALKS AND COMMUNITY DETECTION Overlapping Communities Page 29 © Imperial College London Vertex Centric Viewpoint A network is 1. a set of vertices AND 2. a set of edges We tend to have a very VERTEX centred viewpoint Page 30 © Imperial College London Word Frequencies in Network Review Contemporary Physics 2004] [TSE, Word Rank Count Word Rank Count network 1 254 distribut 21 34 vertic 2 107 scale 21 34 edg 3 86 problem 24 33 random 3 86 simpl 24 33 graph 5 81 idea 26 30 degre 6 78 physic 26 30 power 7 68 size 26 30 lattic 8 67 find 29 29 law 9 65 real 29 29 vertex 10 61 type 31 27 number 11 58 case 32 26 distanc 12 48 hub 33 25 model 13 47 show 33 25 connect 14 46 area 35 24 data 15 40 neighbour 35 24 link 16 38 studi 35 24 world 16 38 point 38 23 larg 18 37 term 38 23 small 19 36 figur 40 22 averag 20 35 form 40 22 comput 21 34 site 40 22 Stop words removed, stemmed, from T.S.Evans “Complex Networks” Contemporary Physics, 2004, 45, 455-474, cond-mat/0405123 Vertex Centric Communities – Vertex Partitions Community = partition of detection via VERTEX set modularity Vertex partition of Karate club graph with optimal modularity [Agarwal & Kempe 2007] Page 32 © Imperial College London Random walk on edges Consider how random walkers pass through edges 1 1 1 ki 2 k j i a j b k Using a, b, … for edge indices Page 33 © Imperial College London Random walk on edges Edge to Edge transition matrix Tab is just aj j b 11 1 2 1 Tab k 2 k j j a j b Page 34 © Imperial College London Random walk on edges Edge-Edge transition matrix Tab defines an adjacency matrix of a Weighted Line Graph WL(G) 1 1 Aab jI (a ,b ) 2 k j a b Page 35 © Imperial College London Vertices of a Line Graph 1.
Recommended publications
  • Superprocesses and Mckean-Vlasov Equations with Creation of Mass
    Sup erpro cesses and McKean-Vlasov equations with creation of mass L. Overb eck Department of Statistics, University of California, Berkeley, 367, Evans Hall Berkeley, CA 94720, y U.S.A. Abstract Weak solutions of McKean-Vlasov equations with creation of mass are given in terms of sup erpro cesses. The solutions can b e approxi- mated by a sequence of non-interacting sup erpro cesses or by the mean- eld of multityp e sup erpro cesses with mean- eld interaction. The lat- ter approximation is asso ciated with a propagation of chaos statement for weakly interacting multityp e sup erpro cesses. Running title: Sup erpro cesses and McKean-Vlasov equations . 1 Intro duction Sup erpro cesses are useful in solving nonlinear partial di erential equation of 1+ the typ e f = f , 2 0; 1], cf. [Dy]. Wenowchange the p oint of view and showhowtheyprovide sto chastic solutions of nonlinear partial di erential Supp orted byanFellowship of the Deutsche Forschungsgemeinschaft. y On leave from the Universitat Bonn, Institut fur Angewandte Mathematik, Wegelerstr. 6, 53115 Bonn, Germany. 1 equation of McKean-Vlasovtyp e, i.e. wewant to nd weak solutions of d d 2 X X @ @ @ + d x; + bx; : 1.1 = a x; t i t t t t t ij t @t @x @x @x i j i i=1 i;j =1 d Aweak solution = 2 C [0;T];MIR satis es s Z 2 t X X @ @ a f = f + f + d f + b f ds: s ij s t 0 i s s @x @x @x 0 i j i Equation 1.1 generalizes McKean-Vlasov equations of twodi erenttyp es.
    [Show full text]
  • Lecture 19: Polymer Models: Persistence and Self-Avoidance
    Lecture 19: Polymer Models: Persistence and Self-Avoidance Scribe: Allison Ferguson (and Martin Z. Bazant) Martin Fisher School of Physics, Brandeis University April 14, 2005 Polymers are high molecular weight molecules formed by combining a large number of smaller molecules (monomers) in a regular pattern. Polymers in solution (i.e. uncrystallized) can be characterized as long flexible chains, and thus may be well described by random walk models of various complexity. 1 Simple Random Walk (IID Steps) Consider a Rayleigh random walk (i.e. a fixed step size a with a random angle θ). Recall (from Lecture 1) that the probability distribution function (PDF) of finding the walker at position R~ after N steps is given by −3R2 2 ~ e 2a N PN (R) ∼ d (1) (2πa2N/d) 2 Define RN = |R~| as the end-to-end distance of the polymer. Then from previous results we q √ 2 2 ¯ 2 know hRN i = Na and RN = hRN i = a N. We can define an additional quantity, the radius of gyration GN as the radius from the centre of mass (assuming the polymer has an approximately 1 2 spherical shape ). Hughes [1] gives an expression for this quantity in terms of hRN i as follows: 1 1 hG2 i = 1 − hR2 i (2) N 6 N 2 N As an example of the type of prediction which can be made using this type of simple model, consider the following experiment: Pull on both ends of a polymer and measure the force f required to stretch it out2. Note that the force will be given by f = −(∂F/∂R) where F = U − TS is the Helmholtz free energy (T is the temperature, U is the internal energy, and S is the entropy).
    [Show full text]
  • 8 Convergence of Loop-Erased Random Walk to SLE2 8.1 Comments on the Paper
    8 Convergence of loop-erased random walk to SLE2 8.1 Comments on the paper The proof that the loop-erased random walk converges to SLE2 is in the paper \Con- formal invariance of planar loop-erased random walks and uniform spanning trees" by Lawler, Schramm and Werner. (arxiv.org: math.PR/0112234). This section contains some comments to give you some hope of being able to actually make sense of this paper. In the first sections of the paper, δ is used to denote the lattice spacing. The main theorem is that as δ 0, the loop erased random walk converges to SLE2. HOWEVER, beginning in section !2.2 the lattice spacing is 1, and in section 3.2 the notation δ reappears but means something completely different. (δ also appears in the proof of lemma 2.1 in section 2.1, but its meaning here is restricted to this proof. The δ in this proof has nothing to do with any δ's outside the proof.) After the statement of the main theorem, there is no mention of the lattice spacing going to zero. This is hidden in conditions on the \inner radius." For a domain D containing 0 the inner radius is rad0(D) = inf z : z = D (364) fj j 2 g Now fix a domain D containing the origin. Let be the conformal map of D onto U. We want to show that the image under of a LERW on a lattice with spacing δ converges to SLE2 in the unit disc. In the paper they do this in a slightly different way.
    [Show full text]
  • Random Walk in Random Scenery (RWRS)
    IMS Lecture Notes–Monograph Series Dynamics & Stochastics Vol. 48 (2006) 53–65 c Institute of Mathematical Statistics, 2006 DOI: 10.1214/074921706000000077 Random walk in random scenery: A survey of some recent results Frank den Hollander1,2,* and Jeffrey E. Steif 3,† Leiden University & EURANDOM and Chalmers University of Technology Abstract. In this paper we give a survey of some recent results for random walk in random scenery (RWRS). On Zd, d ≥ 1, we are given a random walk with i.i.d. increments and a random scenery with i.i.d. components. The walk and the scenery are assumed to be independent. RWRS is the random process where time is indexed by Z, and at each unit of time both the step taken by the walk and the scenery value at the site that is visited are registered. We collect various results that classify the ergodic behavior of RWRS in terms of the characteristics of the underlying random walk (and discuss extensions to stationary walk increments and stationary scenery components as well). We describe a number of results for scenery reconstruction and close by listing some open questions. 1. Introduction Random walk in random scenery is a family of stationary random processes ex- hibiting amazingly rich behavior. We will survey some of the results that have been obtained in recent years and list some open questions. Mike Keane has made funda- mental contributions to this topic. As close colleagues it has been a great pleasure to work with him. We begin by defining the object of our study. Fix an integer d ≥ 1.
    [Show full text]
  • Particle Filtering Within Adaptive Metropolis Hastings Sampling
    Particle filtering within adaptive Metropolis-Hastings sampling Ralph S. Silva Paolo Giordani School of Economics Research Department University of New South Wales Sveriges Riksbank [email protected] [email protected] Robert Kohn∗ Michael K. Pitt School of Economics Economics Department University of New South Wales University of Warwick [email protected] [email protected] October 29, 2018 Abstract We show that it is feasible to carry out exact Bayesian inference for non-Gaussian state space models using an adaptive Metropolis-Hastings sampling scheme with the likelihood approximated by the particle filter. Furthermore, an adaptive independent Metropolis Hastings sampler based on a mixture of normals proposal is computation- ally much more efficient than an adaptive random walk Metropolis proposal because the cost of constructing a good adaptive proposal is negligible compared to the cost of approximating the likelihood. Independent Metropolis-Hastings proposals are also arXiv:0911.0230v1 [stat.CO] 2 Nov 2009 attractive because they are easy to run in parallel on multiple processors. We also show that when the particle filter is used, the marginal likelihood of any model is obtained in an efficient and unbiased manner, making model comparison straightforward. Keywords: Auxiliary variables; Bayesian inference; Bridge sampling; Marginal likeli- hood. ∗Corresponding author. 1 Introduction We show that it is feasible to carry out exact Bayesian inference on the parameters of a general state space model by using the particle filter to approximate the likelihood and adaptive Metropolis-Hastings sampling to generate unknown parameters. The state space model can be quite general, but we assume that the observation equation can be evaluated analytically and that it is possible to generate from the state transition equation.
    [Show full text]
  • A Course in Interacting Particle Systems
    A Course in Interacting Particle Systems J.M. Swart January 14, 2020 arXiv:1703.10007v2 [math.PR] 13 Jan 2020 2 Contents 1 Introduction 7 1.1 General set-up . .7 1.2 The voter model . .9 1.3 The contact process . 11 1.4 Ising and Potts models . 14 1.5 Phase transitions . 17 1.6 Variations on the voter model . 20 1.7 Further models . 22 2 Continuous-time Markov chains 27 2.1 Poisson point sets . 27 2.2 Transition probabilities and generators . 30 2.3 Poisson construction of Markov processes . 31 2.4 Examples of Poisson representations . 33 3 The mean-field limit 35 3.1 Processes on the complete graph . 35 3.2 The mean-field limit of the Ising model . 36 3.3 Analysis of the mean-field model . 38 3.4 Functions of Markov processes . 42 3.5 The mean-field contact process . 47 3.6 The mean-field voter model . 49 3.7 Exercises . 51 4 Construction and ergodicity 53 4.1 Introduction . 53 4.2 Feller processes . 54 4.3 Poisson construction . 63 4.4 Generator construction . 72 4.5 Ergodicity . 79 4.6 Application to the Ising model . 81 4.7 Further results . 85 5 Monotonicity 89 5.1 The stochastic order . 89 5.2 The upper and lower invariant laws . 94 5.3 The contact process . 97 5.4 Other examples . 100 3 4 CONTENTS 5.5 Exercises . 101 6 Duality 105 6.1 Introduction . 105 6.2 Additive systems duality . 106 6.3 Cancellative systems duality . 113 6.4 Other dualities .
    [Show full text]
  • ONE-DIMENSIONAL RANDOM WALKS Definition 1. a Random Walk on the Integers with Step Distribution F and Initial State X ∈ Is A
    ONE-DIMENSIONAL RANDOM WALKS 1. SIMPLE RANDOM WALK Definition 1. A random walk on the integers Z with step distribution F and initial state x Z is a sequence Sn of random variables whose increments are independent, identically distributed2 random variables ξi with common distribution F , that is, n X (1) Sn = x + ξi . i =1 The definition extends in an obvious way to random walks on the d dimensional integer lat- d d tice Z : the increments are then random d vectors. Simple random walk− on Z is the particular case where the step distribution is the uniform− distribution on the 2d nearest neighbors of the 1 origin; in one dimension, this is the Rademacher- 2 distribution, the distribution that puts mass 1=2 at each of the two values 1. The moves of a simple random walk in 1D are determined by independent fair coin tosses:± For each Head, jump one to the right; for each Tail, jump one to the left. 1.1. Gambler’s Ruin. Simple random walk describes (among other things) the fluctuations in a speculator’s wealth when he/she is fully invested in a risky asset whose value jumps by either 1 in each time period. Although this seems far too simple a model to be of any practical value, when± the unit of time is small (e.g., seconds) it isn’t so bad, at least over periods on the order of days or weeks, and in fact it is commonly used as the basis of the so-called tree models for valuing options.
    [Show full text]
  • Stochastic Processes: Theory and Methods. Handbook of Statistics 19 (Ed
    Stochastic Processes: Theory and Methods. Handbook of Statistics 19 (ed. C. R. Rao & D. N. Shanbhag) 171-213, Elsevier, 2001) RANDOM WALK AND FLUCTUATION THEORY N. H. BINGHAM CONTENTS PART I: RANDOM WALKS ON EUCLIDEAN SPACE x1. Introduction x2. Simple random walk on ZZ x3. Recurrence and transience x4. Simple random walk on ZZd; P¶olya's theorem x5. Random walk on IRd x6. Harmonic analysis x7. Potential theory x8. Coupling x9. Renewal theory x10. Limit theorems and Brownian motion x11. Conditioned random walk PART II: RANDOM WALK IN MORE GENERAL CONTEXTS x1. Random walk and electrical networks x2. Random walk on graphs x3. Random walk on groups x4. Brownian motion on Riemannian manifolds x5. Random walk on homogeneous spaces, Gelfand pairs, hypergroups and semigroups x6. Random walk on graphs with special structure x7. Variants on random walk PART III: FLUCTUATION THEORY x1. Spitzer's identity x2. Ladder epochs and heights x3. Spitzer's arc-sine law x4. Ballot theorems x5. Queues x6. Continuous time x7. Barrier problems x8. Fluctuation theory in higher dimensions and algebraic generalisations x9. Distribution-free results and non-parametric statistics x10. Postscript 1 PART I: RANDOM WALK ON EUCLIDEAN SPACE x1. Introduction. The theory and applications of random walks are ubiquitous in the modern prob- ability literature, and random walks form perhaps the simplest and most important exam- ples of stochastic processes - random phenomena unfolding with time. The term `random walk' can be traced back (at least) to P¶olya (1921) (`zufÄallige Irrfahrt' in the German), but the context is much older. If we think of X1;X2;::: as the gains or losses of a gambler on successive plays of a gambling game, and the partial sums Sn := X1 + ¢ ¢ ¢ + Xn (S0 := 0) as his cumulative gain or loss to date (by time n), then the behaviour of the stochastic 1 process (Sn)n=0 - the random walk with steps Xn - describes the evolution of the gambler's fortune.
    [Show full text]
  • Random Walk Simulation of Pn Junctions
    Random Walk Simulation of p-n Junctions by Jennifer Wang Submitted to the Department of Physics in partial fulfillment of the requirements for the degree of Bachelor of Arts in Physics at WELLESLEY COLLEGE May 2020 c Wellesley College 2020. All rights reserved. Author.............................................................. Department of Physics May 6th, 2020 Certified by. Yue Hu Professor of Physics Thesis Supervisor Accepted by . Yue Hu Chair, Department of Physics Random Walk Simulation of p-n Junctions by Jennifer Wang Submitted to the Department of Physics on May 6th, 2020, in partial fulfillment of the requirements for the degree of Bachelor of Arts in Physics Abstract Random walks rely on stochastic sampling instead of analytical calculations to simulate complex processes; thus, these methods are flexible and mathematically simple. In the semiconductor field, random walks are often utilized to model bulk transport of charge carriers. However, junction transport models generally rely on more complex numerical methods, which are computationally unwieldy and opaque to a general audience. To aim for greater accessibility, this thesis applies random walks to simulate carrier transport in p-n junctions. We first show that our random walk methods are consistent with finite-difference methods to model drift-diffusion processes. Next, we apply a basic random walk to model a p-n junction at equilibrium. This demonstrates successful proof-of-concept simulation of the depletion layer, as well as calculation of the the electric field and potential of a typical p-n junction. Additionally, because the basic random walk assumption cannot incorporate different mobility parameters for electrons and holes, we develop an improved compound p- n junction model.
    [Show full text]
  • Simple Random Walks: Improbability of Profitable Stopping
    SIMPLE RANDOM WALKS: IMPROBABILITY OF PROFITABLE STOPPING EMILY GENTLES Abstract. This paper introduces the basics of the simple random walk with a flair for the statistical approach. Applications in biology and game theory will be discussed. The Impossibility of Profitable Stopping will be explored and proven. Contents 1. Introduction 1 2. What it looks like 2 3. Brownian Motion 3 4. Game Theory 5 Acknowledgments 6 References 6 1. Introduction Imagine you are on an integer number line, standing at zero. You flip a fair coin and if it comes up heads you move one step right to +1 and if it comes up tails you move one step left to -1. You continue this process, moving one step right or left for each coin toss, until you have returned to your starting position or have taken a predetermined number of steps. You have just executed a symmetric simple random walk. This simple random walk spans many fields of study and was first noticed by the Romans in 60BC. However, one of the subject's most notable beginnings occurred in biology when Scottish botanist Robert Brown rediscovered the phenomena in 1827. While studying pollen suspended in water Brown noticed the jittery motion of the pollen's organelles. At the time Brown speculated that the organelles were tiny organisms, alive and moving. Although his hypothesis was later disproved, the movement was coined Brownian motion. Since its start the subject has been fundamental in economics and physics with less significant uses in various other courses of study. In this paper we will explore the basic attributes of simple random walks in Section 2, how they relate to Brownian motion and the various distributions they can be described with in Section 3, and we will touch on their role in game theory in Section 4.
    [Show full text]
  • CONDITIONAL EXPECTATION and MARTINGALES 1.1. Definition of A
    CONDITIONAL EXPECTATION AND MARTINGALES 1. DISCRETE-TIME MARTINGALES 1.1. Definition of a Martingale. Let {Fn}n 0 be an increasing sequence of σ algebras in a ¸ ¡ probability space (­,F ,P). Such a sequence will be called a filtration. Let X0, X1,... be an adapted sequence of integrable real-valued random variables, that is, a sequence with the prop- erty that for each n the random variable X is measurable relative to F and such that E X n n j nj Ç . The sequence X0, X1,... is said to be a martingale relative to the filtration {Fn}n 0 if it is 1 ¸ adapted and if for every n, (1) E(Xn 1 Fn) Xn. Å j Æ Similarly, it is said to be a supermartingale (respectively, submartingale) if for every n, (2) E(Xn 1 Fn) ( )Xn. Å j · ¸ Observe that any martingale is automatically both a submartingale and a supermartingale. 1.2. Martingales and Martingale Difference Sequences. The most basic examples of martin- gales are sums of independent, mean zero random variables. Let Y0,Y1,... be such a sequence; then the sequence of partial sums n X (3) Xn Y j Æ j 1 Æ is a martingale relative to the natural filtration generated by the variables Yn. This is easily verified, using the linearity and stability properties and the independence law for conditional expectation: E(Xn 1 Fn) E(Xn Yn 1 Fn) Å j Æ Å Å j E(Xn Fn) E(Yn 1 Fn) Æ j Å Å j Xn EYn 1 Æ Å Å X .
    [Show full text]
  • Random Walk Methods for Modeling Hydrodynamic Transport in Porous and Fractured Media from Pore to Reservoir Scale
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Digital.CSIC Noname manuscript No. (will be inserted by the editor) Random walk methods for modeling hydrodynamic transport in porous and fractured media from pore to reservoir scale Benoit Noetinger · Delphine Roubinet · Anna Russian · Tanguy Le Borgne · Frederick Delay · Marco Dentz · Jean-Raynald de Dreuzy · Philippe Gouze Abstract Random walk (RW) methods are recurring Monte Carlo methods used to model convective and diffusive transport in complex heterogeneous media. Many applications can be found, including fluid mechanic, hydrology, and chemical re- actors modeling. These methods are easy to implement, very versatile and flexible enough to become appealing for many applications because they generally overlook or deeply simplify the building of explicit complex meshes required by deterministic methods. RW provide a good physical understanding of the interactions between the space scales of heterogeneities and the transport phenomena under consider- ation. In addition, they can result in efficient up-scaling methods, especially in the context of flow and transport in fractured media. In the present study, we review the applications of RW to several situations that cope with diverse spatial scales, and different insights into up-scaling problems. The advantages and down- B. Noetinger IFPEN 1-4 avenue de Bois Pr´eau,92852, France E-mail: [email protected] D. Roubinet Applied and Environmental Geophysics Group, Institute of Earth Sciences, University of Lau- sanne, 1015 Lausanne, Switzerland A. Russian G´eosciences,Universit´ede Montpellier 2, CNRS T. le Borgne Universit´ede Rennes 1, CNRS, G´eosciencesRennes, UMR 6118, Rennes, France F.
    [Show full text]