I have two players with one die.
The first player throws a die between 1 and 125.
The second player throws a die between 1 and 350.
The winner is the person who gets the higher roll. How do I make an average for this, aka the average times player one or player two will win. I seem to be having a brain fart here. I can make a simulator to generate this, but that seems rather silly in favor of a calculation.
Let A represent the distribution of rolls that the player with the $125$ sided die can achieve and B represent the other. The probability that the player $A$ with the $125$ sided die wins is $$\sum_{k=1}^{k=125}P(A=k)\cdot P(B \lt k)$$ $$=\sum_{k=1}^{k=125}\frac{1}{125}\cdot \frac{k-1}{350}$$ $$=\frac{1}{43750}\sum_{k=2}^{k=125}k$$ $$=\frac{1}{43750}\cdot\Big(\frac{125}{2}(125+1)-1\Big)$$ $$=\frac{3937}{21875} \approx 0.1799771428571428571...$$