The confusion matrix, per group
Every fairness metric in this lesson is a statement about a confusion matrix computed separately for each group, so it is worth fixing the vocabulary first.
For a binary decision, four outcomes. True positives: predicted yes and actually yes. False positives: predicted yes, actually no. True negatives and false negatives correspondingly.
From those, the rates that matter.
Selection rate: what proportion of this group received a positive decision. This is about outcomes, regardless of whether they were correct.
True positive rate, also called recall or sensitivity: of those who actually were positive, what proportion did we identify. Its complement is the false negative rate, which is the proportion of qualified people wrongly rejected.
False positive rate: of those who actually were negative, what proportion did we wrongly select.
Positive predictive value, also called precision: of those we selected, what proportion actually were positive.
The fairness definitions are simply choices about which of these should be equal across groups. That framing is what makes the impossibility result later feel inevitable rather than surprising: these quantities are arithmetically linked, so equalising some forces others apart.

