Discrete notes    About    Archive

October batch, forgotten notions

I saw many talks in October and I plan to blog a bit about those in some posts to come. This first post is about some notions a somehow knew but couldn’t really define.

$\epsilon$-nets

$\epsilon$-nets are often appear in computational geometry. Consider a set of points $X$ in a geometric space, and a collection $C$ of subsets of $X$ (for example you have a collection of balls, then it defines the collection of subsets of $X$: the points contained in each ball). Now you are given an $\epsilon\in [0,1]$. An $\epsilon$-net $E$ is a subset of $X$, such that for every element $c$ of $C$ that is large enough, $c$ contains an element of $X$, and large enough means: \(\frac{|c|}{|X|}\geq \epsilon.\)

As one can imagine this is a useful tool to build approximation algorithm, as one may be able to focus on the net, that is hopefully much smaller than $X$.

The concept is related to the VC dimension.

A nice introduction with a chocolate-consumer example can be found here.

PTAS, QPTAS etc.

A small list of the accronyms for approximation schemes (PTAS is fine for me, but after that…):

(Both this section and the previous one originate from the talk of Edouard Bonnet for the paper EPTAS for Max Clique on Disks and Unit Balls at FOCS 2018.)

Doubling dimension

A lot of recent papers prove nice results in doubling metrics. The doubling dimension of a metric space is the smallest positive $k$ such that every ball of the space can be covered by $2^k$ balls of half the radius. You can think of the plane, and show that you can cover a ball of radius 1, with 7 balls of radius 1/2, which gives doubling dimension 3. More generally for the euclidian space $R^d$, the doubling dimension is known to be in $O(d)$. Thus bounded doubling dimension is a natural generalization of bounded dimension.

(The notion appears for example in $ε$-Coresets for Clustering (with Outliers) in Doubling Metrics also presented at FOCS.)