Local Differential Privacy
Local Differential Privacy is a method of protecting individual data by adding statistical noise to each person's data before it ever leaves their own device or control, so that the party collecting the data never sees the true raw values. This approach lets analysts compute useful aggregate statistics across many people while limiting what can be learned about any single individual. It typically trades some accuracy of the results for stronger individual privacy protection.
Local Differential Privacy (LDP) is a variant of the differential privacy model in which the randomization mechanism is applied at the level of each individual data subject, so that data is made differentially private before it leaves the subject's control rather than after collection by a trusted aggregator. In contrast to the global (central) model, where noise is added by a trusted curator to query outputs over an already-collected dataset, LDP perturbs individual input data points at the source, which removes the requirement for a trusted central collector but generally imposes a greater utility cost for equivalent privacy guarantees. LDP is commonly applied to settings such as collecting individual survey responses and telemetry in distributed architectures. This definition addresses the LDP model and its distinction from the global model only; it does not cover specific noise mechanisms, epsilon parameter selection, formal privacy bounds, or how LDP maps to particular legal regimes. Note that applying LDP does not by itself render data non-personal or place it outside the scope of applicable data protection law, and any such determination depends on context, implementation, and jurisdiction.
Why it matters
Local Differential Privacy addresses a structural weakness in many data collection architectures: the reliance on a trusted central collector. In the global (central) model of differential privacy, raw individual data is gathered and held by a curator who is trusted to add noise before releasing query results. That trust is itself a risk, because the curator holds a dataset of true values that could be breached, subpoenaed, or misused. LDP removes this single point of trust by perturbing each person's data before it ever leaves their control, so the collector never sees the raw values in the first place. For organizations designing telemetry or survey collection at scale, this shifts the risk profile in a way that can be attractive for privacy-by-design objectives.
Who it's relevant to
Inside LDP
Common questions
Answers to the questions practitioners most commonly ask about LDP.