I'm usually OK at Excel but I'm really struggling with this problem and hopefully somebody can help.
I'm trying to model out a sports league system where, when a team wins, they earn 150 points towards a rating score and if they lose, they have 100 points deducted from that rating score. In this model, I want the team to always win one match then lose one match, in sequence, until their combined score passes a threshold of 1250, at which point I want to count how many matches the team had to play to pass the threshold.
I can simulate this sequence pretty easily if I simply have a sequence of matches where I add or deduct score from the team's previous total (see image), depending on the result, with the results going through the win one, lose one, win one, lose one etc sequence. What I can't figure out how is how to calculate the number of games required (45) to pass the threshold without modelling the full sequence like this. Would anybody be able to help me with this please?
What I have tried so far is getting the delta between a win and a loss (so 50) and dividing the target rating (1250) by that to get the number of matches, but that returns 25 which is clearly wrong.
I'm trying to model out a sports league system where, when a team wins, they earn 150 points towards a rating score and if they lose, they have 100 points deducted from that rating score. In this model, I want the team to always win one match then lose one match, in sequence, until their combined score passes a threshold of 1250, at which point I want to count how many matches the team had to play to pass the threshold.
I can simulate this sequence pretty easily if I simply have a sequence of matches where I add or deduct score from the team's previous total (see image), depending on the result, with the results going through the win one, lose one, win one, lose one etc sequence. What I can't figure out how is how to calculate the number of games required (45) to pass the threshold without modelling the full sequence like this. Would anybody be able to help me with this please?
What I have tried so far is getting the delta between a win and a loss (so 50) and dividing the target rating (1250) by that to get the number of matches, but that returns 25 which is clearly wrong.