Differential privacy
Differential privacy is a formal, mathematical definition of privacy protection for statistical analyses and machine-learning models. An algorithm is differentially private if its output changes only negligibly, within a bound set by the privacy parameter epsilon (and, in the relaxed version, delta), whether or not any single individual's record is included in the input dataset. This is achieved by adding carefully calibrated random noise to queries, statistics or model gradients, so that an observer cannot confidently infer anything about a specific person from the released result. The framework was introduced by Cynthia Dwork and colleagues in 2006 and has been deployed by the US Census Bureau, Apple, Google and others.
Differential privacy differs fundamentally from syntactic models such as k-anonymity: it does not modify the dataset itself but controls what can be learned from analyses of it, offers a quantifiable and composable guarantee that holds regardless of what background knowledge an attacker has, and degrades gracefully as more queries are answered, through a "privacy budget" that must be managed. Its cost is reduced accuracy, which is significant for small populations, rare events and detailed subgroups, precisely the situations that matter most in clinical and rare-disease research. Local differential privacy applies noise on the user's device before collection; central differential privacy applies it to the aggregated result.
In health data, differential privacy is used to publish aggregate statistics from registries and health data warehouses, to protect model updates in federated learning, to release synthetic data with provable guarantees, and to answer exploratory queries in secure processing environments such as those envisaged by the European Health Data Space. The EDPB and national authorities recognise it as a strong privacy-enhancing technology that supports anonymisation claims, but the underlying processing of personal data remains subject to the GDPR, and whether a differentially private output is anonymous depends on the chosen epsilon and on documentation of the parameters, which should be recorded in the DPIA and in any data-sharing agreement.
