Originally posted: 2021-05-21. Last updated: 2023-10-02. Live edit this notebook here.

The previous article showed how m and u probabilities can be converted into Bayes Factors, which in turn could be combined with the prior probability to compute an updated prediction (the 'posterior' probability).

We now have all the groundwork in place to present a full mathematical definition of a model in the Fellegi-Sunter framework.

A more technical treatment is given in AP Enamorado, T., Fifield, B., & Imai, K. (2019), which contains a slightly more generalised form of the model presented here.

In the previous article we saw what Bayes Factors act as a relative multiplier that increases or decreases the overall prediction of whether the records match.

We saw that, for a Bayes Factor for a specific scenario such as a match on month of birth we could write:

posterior odds of match=prior odds of match×Bayes Factor\text{posterior odds of match} = \text{prior odds of match} \times \text{Bayes Factor}

It turns out that this formula can be extended to account for the information in multiple scenarios such as: a match on first name and a match on surname and a fuzzy match on date of birth.

Let us denote by KiK_i the Bayes Factors for each activated scenario1, then the general formula is:

posterior odds of match=prior odds×K1×K2××Kn(Eq 4.1)\text{posterior odds of match} = \text{prior odds} \times K_1 \times K_2 \times \ldots \times K_n \quad (\text{Eq 4.1})

This formula is quite intuitive. For example:

  • If month of birth matches, the Bayes Factor may be around 12: the records are about 12x more likely to match
  • If gender matches, the Bayes Factor may be around 2: the records are about 2x more likely to match

If both match, it becomes 24x more likely the records match.

Multiplying Bayes Factors to compute a predicted probability in this way sometimes known as a Naive Bayes classifier.2

Since Bayes Factors are not estimated directly, and instead we estimte the m and u probabilities of the model, we can use Ki=miuiK_i = \frac{m_i}{u_i} to write the full specification of our model:

posterior odds of match=prior odds×m1m2mnu1u2un\text{posterior odds of match} = \text{prior odds} \times \frac{m_1 m_2 \ldots m_n}{u_1 u_2 \ldots u_n}

This final result can be converted into a probability using

probability=odds1+odds\text{probability} = \frac{\text{odds}}{1 + \text{odds}}

In the first article in this tutorial we claimed that the Fellegi-Sunter model makes its predictions by summing of the partial match weights.

This follows from equation 4.1. Specifically, by taking the logarithm, we can write:

Applying log2\log_2 to both sides, you get:

final match weight=prior match weight+ω1+ω2++ωn\text{final match weight} = \text{prior match weight} + \omega_1 + \omega_2 + \ldots + \omega_n

where ωi=log2(Ki)\omega_i = \log_2(K_i) are the partial match weights.

The remainder of this article delves a bit deeper into equation (4.1) and can be safely skipped if you're not interested in the maths. In particular, it shows how the match probability can be expressed in terms of the m and u probabilities using a formulation equivalent to equation 4 in the Fastlink paper.

The next article will look at the mechanics of computing the final prediction.

In the previous article we saw that by applying Bayes Theorem to a specific scenario we could write:

Pr(matchfirst name matches)=Pr(first name matchesmatch)Pr(match)Pr(first name matchesmatch)Pr(match)+Pr(first name matchesnon match)Pr(non match)\operatorname{Pr}(\text{match}|\text{first name matches}) = \frac{\operatorname{Pr}(\text{first name matches}|\text{match})\operatorname{Pr}(\text{match})}{\operatorname{Pr}(\text{first name matches}|\text{match})\operatorname{Pr}(\text{match}) + \operatorname{Pr}(\text{first name matches}|\text{non match})\operatorname{Pr}(\text{non match})}

We can make this easier to read by recalling that

m=Pr(scenariorecords match)m = \text{Pr}(\text{scenario}|\text{records match})

and

u=Pr(scenariorecords do not match)u = \text{Pr}(\text{scenario}|\text{records do not match})

and denoting λ\lambda as the prior probability

this can be written:

posterior probability of match=λmλm+(1λ)u\text{posterior probability of match} = \frac{\lambda m}{\lambda m + (1 - \lambda)u}

By repeated application of Bayes Theorem (see annex here), we can generalise this formula to:

posterior probability of match=λm1m2mnλm1m2mn+(1λ)u1u2un(Eq 4.2)\text{posterior probability of match} = \frac{\lambda m_1 m_2 \ldots m_n}{\lambda m_1 m_2 \ldots m_n + (1 - \lambda)u_1 u_2 \ldots u_n} \quad (\text{Eq 4.2})

We can write a similar formula for a non-match:

posterior probability of non-match=(1λ)u1u2unλm1m2mn+(1λ)u1u2un(Eq 4.3)\text{posterior probability of non-match} = \frac{(1- \lambda) u_1 u_2 \ldots u_n}{\lambda m_1 m_2 \ldots m_n + (1 - \lambda)u_1 u_2 \ldots u_n} \quad (\text{Eq 4.3})

Now, recall that:

odds=probability1probability\text{odds} = \frac{\text{probability}}{1-\text{probability}}

This means we can divide (4.2) by (4.3 to obtain the odds). Since they share a denominator this becomes:

posterior odds of match=λm1m2mn(1λ)u1u2un\text{posterior odds of match} = \frac{\lambda m_1 m_2 \ldots m_n}{(1- \lambda) u_1 u_2 \ldots u_n}

Since Ki=miuiK_i = \frac{m_i}{u_i} this is equivalent to Equation 4.1 in this article, and also is equivalent to Equation 4 in the FastLink paper.

  1. The 'activated scenario' is the similarity category for the record comparison under evaluation. For example, the 'activated scenario', three scenarios (similarity categories) may be defined for the first name column - 'exact match', 'fuzzy match' and 'all other'. Each will have a Bayes Factor associated with it. The 'activated scenario' is which of these scenarios describes the record comparison under evaluation.

  2. The result is only valid if we assume that the columns are independent conditional on match status. This is 'naive' in the sense that it's rarely true. However, it turns out for record linkage purposes that Fellegi Sunter models are quite robust to the violation of this assumption.