Red envelopes

Lìshì (red envelope)
Lìshì (red envelope)

Long time no see! I just survived Eurocrypt 2020 submission deadline. Hooray and here’re some maths!

Bande-annonce : I will be posting a series of entries about my recent research on attribute-based encryption (ABE) in Chinese (English speakers should just read the paper, right?). Keep tuned.

Red envelopes are a form of (monetary) gifts (learn more by tapping the link below the hero image), and modern forms of red envelopes include electronic ones, most commonly[citation needed] seen on WeChat.

On WeChat, one can put a certain amount of money (no more than 200 CNY per envelope) and distribute it

  • to a specific person;
  • to a specific number of persons evenly; or
  • to a specific number of persons randomly.

We are interested in how the amount of money each person receives is sampled in the last case. It would be totally rational to assume WeChat uses crafted distributions so that there are lower/upper bounds on the amount of money each person who opens the envelope receives, but we (shamelessly self-identified) mathematicians can confine ourselves in the simpler case — the uniform distribution without bounds except the natural ones.

Formally speaking, let the amount of money be pennies and the number of people be where Consider the set we wish to draw a sample from the uniform distribution over

Incorrect Characterizations

Before talking about sampling from the distribution, it is actually interesting to see how one can characterize the distribution. There are 3 obvious incorrect attempts.

The first attempt is to say:

  • The marginal distributions for each person are identical.
  • Conditioned on any person, say receiving pennies, the rest are distributed identically as if there were pennies and people.

This attempt fails as soon as there are 2 people and 3 pennies: The requirement only mandates that the distribution of the first person’s amount be symmetric around the center, but not necessarily uniform.

Now let’s consider a second attempt:

  • For each ordered subset of , the marginal distributions of these people only depend on the size of the ordered subset.
  • Conditioned on any person…

Or a third one:

  • For each ordered subset of…
  • Conditioned on any ordered subset of…

Of course, they both fail as soon as there are 2 people and 3 pennies.

Sampling

Why did I stop talking about characterizations? Well, I just became tired of it. Let’s do the actual sampling. It’s pretty simple — consider pennies arrange in a row and separated by gaps, we can use reservoir sampling to put separators in those gaps. This takes time exponential in the input length.

Of course, WeChat doesn’t have to face this exponential problem even if it chooses to sample from this distribution — there is a small upper bound on money (20000 pennies). There is also a small upper bound on distributees (100 people, I just checked the FAQ).

Correct Characterization

The following characterization is correct:

  • If there are two people, the amount for the first person is uniformly distributed.
  • The marginal distributions for each person are identical.
  • Conditioned on any person…

This can be proven by induction. If there is 1 or 2 people, the proposition holds trivially. If there are people, let the probability masses of be Combining the second and the third conditions with the induction hypothesis, we have that for all Enter the theory of Markov chains — there is only one natural Markov chain to consider and I’m not going to explicitly define it (since it’ll be a mouthful). It’s easy to check that this Markov chain is regular: Any state can transit to another in 2 steps (via Therefore, it has exactly one steady state, which is the unique solution to the above linear system. Note that the correct distribution (uniform over ‘also’ satisfies the system, so the unique solution must be the correct distribution. This completes the inductive step.

N.B. The above inductive step does not go through for because each state in that Markov chain absorbs itself and any distribution is a steady state.

Please enable JavaScript to view the comments powered by Disqus.