Toolbox

C1: Constructing a perfect matching is RNC

Reminder: This post contains 1360 words · 4 min read · by Xianbin

Random NC: it is used to define a problem that can be solved in polylog time by a randomized parallel algorithm using a polynomial number of processors.

Basic Tools

Basic Tool 1

Lemma[Schwartz–Zippel]\textbf{Lemma}[\textup{Schwartz–Zippel}]. Let F\mathbb{F} denote a field and let f(x1,,xn)F[x1,,xn]f(x_1,\ldots,x_n) \in \mathbb{F}[x_1,\ldots,x_n] be a nonzero multivariate polynomial of degree dd. Let SFS\subseteq \mathbb{F} be a finite set. Then, we have

P[f(a1,,an)=0]dS\mathbb{P}[f(a_1,\ldots,a_n)=0] \leq \frac{d}{\lvert S \rvert}

The degree of a polynomial is the largest degree of its monomials. For example,

f(x1,x2)=x1x22+1f(x_1,x_2) = x_1x_2^2 + 1

has degree 3.

There, we set f(x)=x1d+x2+f(x) = x_1^d + x_2+\ldots. After uniformly at random selecting from the finite set, the probability that they are the root is very small, at most d/Sd/\lvert S \rvert.

Basic Tool 2

Given an undirected graph G=(V,E)G=(V, E), its Tutte matrix TT is the n×nn\times n symbolic matrix as follows.

Let (i,j)E(i,j)\in E denote the edge in GG.

Mi,j:={xi,j,i<jxi,j,i>j0,OtherwiseM_{i,j} : = \begin{cases} x_{i,j}, && i<j \\ -x_{i,j}, && i>j \\ 0, && \text{Otherwise} \end{cases}

We can show that MM is skew-symmetric, i.e.,

MT=MM^T = - M

Lemma\textbf{Lemma}[Tutte’s Perfect Matching Lemma] Let MM be the Tutte matrix of an undirected graph G=(V,E)G=(V, E). We have

det(M)0\text{det}(M) \not = 0

if and only if GG has a perfect matching.

To be continue…

Reference

[1]. Karp, R.M., Upfal, E. and Wigderson, A., 1985, December. Constructing a perfect matching is in random NC. In Proceedings of the seventeenth annual ACM symposium on Theory of computing (pp. 22-32).