Ah yes that’s almost the correct calculation!
Let’s dig into it.
Conversion rates and market share
Just for the sake of terminology, let’s be clear, those % numbers you are computing are conversion rates, not market shares. So you will win that specific policy around 0.003% of the time. In your example this happens because there are only 10 markets where you are the cheapest for that particular policy, so you have no chance of winning that one against the top players!
A simple example: 11 models, 1 policy, 5-player markets
Let’s make the example a little simpler (or with easier numbers!). Let’s say the market size is 5, and there are a total of 11 models and our threshold is top 7 models rather than top 10%. Let’s make it even simpler with only 1 policy in the market so that the conversion rate and market share mean the same thing. Otherwise the market share is the mean value of the conversion rates.
Note: In practice you have to perform this calculation for every policy in the dataset.
Round 1
Now let’s assume you are cheaper than 5 others. Your conversion rate in round 1 can be computed:
A) Number of possible round 1 markets with you in it: nCr(10, 4) = 210
B) Number of round 1 markets where you are cheapest: nCr(5, 4) = 5
Conversion Rate: B/A = ~2.4%
Round 2 with you not the top of round 1
Ok now let’s go into round 2 with the assumption that you’re not in the top 7 round 1 models and you’re cheaper than 4 in the top 7:
C) Number of possible round 2 markets with you in it: nCr(7, 4) = 35
D) Number of round 2 markets where you are the cheapest: nCr(4, 4) = 1
Conversion Rate: D/C = ~3%
Round 2 with you in the top of round 1
Now what happens if you ARE in the top 7 and you’re cheaper than 4 of the top 7? Well from your perspective it’s exactly the same as before right? Except the total number of markets has to account for this restriction. So it looks something like:
E) Number of possible round 2 markets with you in it: nCr(6, 4) = 15
F) Number of round 2 markets where you are the cheapest: nCr(4, 4) = 1
Conversion Rate: F/E = ~6.5%
Wait, so I get 6% if I’m in the top models and 3% if I’m not?
Yes because those markets are different “hypothetical worlds”.
Our base case is when your model is cheaper than 4 others in the top 7:
- If you are in the top 7 there is 1 less player in the top that you have to play against (yourself)
- If you are not in the top 7 then the number of players remains 7 (not 6).
Cases (1) and (2) represent different competitive dynamics and are not really comparable from the perspective of a single model.
Your specific questions
Unordered sampling without replacement?
Yes. This is necessary if we are to treat each market as a new simulation.
What happens if you’re in the top 10%?
You still compete only against the others in the top 10% in exactly the same way as round 1. So there are fewer total markets.
What about identical prices for policies?
In that case the calculation does not change very much, remember we are computing conversion rates. So all we have to do is to remember to not count someone as being cheaper than someone else when they are actually equal.
The rest of the mathematics follows normally (see ) . In practice what this amounts to in a simulation is randomly breaking the ties, which ultimately average out over many repeats of the market.
I hope this clears things up, and more importantly, that I have not made an arithmetic mistake!