Approximate Gumbel Last Passage Percolation

2 Grid Paths and Last Passage Percolation

2.1 Basic Definitions

Definition 1 Grid Point
#

A grid point is an element of \(\mathbb {N}^2\).

Definition 2 Edge
#

An edge is a pair of grid points.

Definition 3 Up-Right Edge
#

An edge \((p, q)\) where \(p = (x, y)\) and \(q = (x', y')\) is up-right if either:

  • \(x' = x + 1\) and \(y' = y\) (right step), or

  • \(x' = x\) and \(y' = y + 1\) (up step).

Definition 4 Grid Path
#

A grid path is a list of edges.

Definition 5 Valid Path
#

A path is valid from point \(p\) to point \(q\) if it is a sequence of connected up-right edges starting at \(p\) and ending at \(q\).

Lemma 6 Paths Exist
#

For any \(m, n \in \mathbb {N}\), there exists at least one valid path from \((0, 0)\) to \((m, n)\).

Definition 7 LPP Value
#

Given a weight function \(w : \text{Edge} \to \mathbb {R}\) and endpoints \((m, n)\), the Last Passage Percolation value is:

\[ \text{LPP}_w(m, n) = \max _{\pi \in \text{Paths}(0, 0; m, n)} \sum _{e \in \pi } w(e) \]

where the maximum is taken over all valid paths from \((0, 0)\) to \((m, n)\).