I'm thinking about coding a ranking engine, and am unclear about how I can combine probability distributions for two (or more) entities.
I think this is easier to ask with an example. Say I have two students, A and B, and their expected scores on an exam are distributed as follows:
$A \sim \mathcal{N}(75, 5)$
and
$B \sim \mathcal{N}(70, 5)$
How do I calculate the probability A beats B in the exam?
How would I generalise the approach to handle more students (ie for each student, determine the probability they top the exam)?
What considerations would I need to take into account for other probability distributions?