LOGBOOK

HELP

Quiz Entry - updated: 2026.07.05

How does differential privacy protect data, and where is it used at scale?

It adds carefully calibrated mathematical noise so that including or excluding any single individual has negligible impact on the output — used famously by the US Census Bureau for the 2020 Census.

Four-step DP query: submit, compute true result, add Laplace noise scaled by sensitivity/epsilon, release.

* The DP query mechanism: calibrated Laplace noise is added before release. *

Two analyses, one with and one without a single individual, give near-identical outputs.

* Adding or removing one person barely changes the result. — Near, Darais & Boeckl, Public domain, via Wikimedia Commons. *

The process for a query:

  1. A query is submitted to the dataset.
  2. The true result is computed.
  3. Mathematical noise is added based on a privacy budget.
  4. The perturbed result is released.

The formal guarantee: an observer of the output essentially cannot tell whether any one person's data was in the dataset — so individuals get plausible deniability while aggregate statistics stay accurate.

The privacy budget (ε, epsilon): controls the noise/accuracy trade-off. Smaller ε = more noise = stronger privacy but less accuracy; every query "spends" from a finite budget.

Real deployment: the US Census 2020 adopted differential privacy — a landmark for privacy-preserving government data. Apple and Google also use it for telemetry.

Go deeper:

From Quiz: PRIVACY / Cryptographic Privacy & Big Data — Zero-Knowledge Proofs, MPC, Homomorphic Encryption & Anonymization | Updated: Jul 05, 2026