security

Differential Privacy

Differential privacy is a mathematical guarantee that the output of an analysis — a statistic, a dashboard metric, a trained model — stays essentially the same whether or not any single person's record is included. It works by injecting carefully calibrated random noise, tuned by a privacy budget (epsilon): smaller epsilon means more noise and stronger privacy, larger epsilon means sharper numbers but weaker protection. The point is that an observer can't reverse-engineer any individual from the results, even with side knowledge. For builders, it's a way to share aggregate analytics, publish benchmarks, or train models on user data while making a real, provable privacy claim rather than a hand-wavy 'anonymized.' Practical note: it's not free — noise degrades accuracy, so it fits aggregate metrics and large datasets far better than small-cohort or per-user precision. Use vetted libraries rather than rolling your own noise, and treat the epsilon budget as a finite resource you spend across queries.

Related terms

More Security & Compliance terms