What is Differential Privacy?

Differential privacy is a mathematical framework for sharing information about a dataset while limiting how much any single individual's data can be learned from published results. It adds controlled noise to outputs so aggregated statistics remain useful but individual responses are protected.

Differential privacy (DP) provides a formal guarantee about privacy risk when releasing data or statistics. Instead of trying to remove identifiers or rely on vague notions of anonymisation, DP injects randomized noise into queries or summaries (for example, counts, averages, or histograms) so that the output would look nearly the same whether or not any single person’s record is included. This makes it provably hard for attackers to infer whether a particular individual contributed to the dataset or to reconstruct their private answers. DP is parameterised by a privacy budget (commonly called epsilon) that controls the trade-off between privacy protection and accuracy: smaller epsilon gives stronger privacy but more noise.

Usage example

A local council uses a Hearo survey to collect residents’ feedback on proposed changes. Before publishing the results dashboard showing how many people support each option, the council applies differential privacy to the counts so the published figures protect individual respondents while still showing overall trends.

Practical application

Why it matters: surveys often collect sensitive or identifiable information. Differential privacy lets organisations publish useful, aggregate insights (e.g., participation rates, satisfaction levels, or demographic breakdowns) while reducing the risk that a published statistic reveals anything significant about any single respondent. For Hearo customers this means you can share or analyse multilingual responses, produce public summaries, or provide researchers with aggregated datasets without exposing contributors. Important caveats: DP is not a silver bullet — it doesn’t replace strong data security, careful survey design, or ethical review. It requires choosing appropriate parameters (epsilon), understanding how privacy guarantees compose across multiple releases, and accepting some loss of precision, especially for small groups or rare responses.

FAQ

How is differential privacy different from anonymisation?

Anonymisation tries to remove or mask direct identifiers (like names), but re-identification can still be possible by combining datasets or using unique response patterns. Differential privacy, by contrast, provides a formal, quantifiable guarantee: the published outputs are randomly perturbed so they do not reveal whether any one person is in the dataset, regardless of external information an attacker might have.

Does differential privacy mean my individual answers are never seen?

Not necessarily. DP protects what gets published or released, not whether raw responses are accessible to authorised administrators. In many implementations, trusted staff can view individual responses for casework or verification while DP is used for public dashboards, research exports, or shared reports to limit disclosure risk to third parties.

What is epsilon and how should we choose it?

Epsilon is a numeric parameter that quantifies the strength of the privacy guarantee: smaller values mean stronger privacy and more noise in results. There’s no single correct value; selection depends on context, the sensitivity of data, how many queries will be released, and acceptable accuracy. Organisations often balance legal/regulatory expectations and stakeholder trust with the need for usable insights, and may consult privacy experts when setting epsilon and overall policies.

Will differential privacy make my survey results useless?

Usually not. For large populations and common responses, DP preserves useful trends and comparisons while adding only modest noise. The main limitations appear with very small sample sizes or rare categories, where noise can overwhelm the signal. That’s why DP is best used alongside good sampling, reporting practices (e.g., avoid publishing tiny subgroup counts), and transparent documentation about how results were produced.