I have a fixed cost at a percent success rate, and each time I fail the success rate goes up. For example, each try costs 200 units. The initial success rate is 20% and each time I fail it increases by 1.5%. What is the average cost for a success?
I honestly have no clue how to go about this. Permutations were the first thing that came to mind, but no luck with it. I then came up with an equation from i=0 to i=n, where n is the number of tries, sum(200/(.2+.015i))/n. However, this didn't give a final answer, and even if it did, the resulting number soon surpasses the actual cost (for example, n=7 gives you an answer of 829, but an actual cost for 7 tries is 1400)
I honestly have no clue how to go about this. Permutations were the first thing that came to mind, but no luck with it. I then came up with an equation from i=0 to i=n, where n is the number of tries, sum(200/(.2+.015i))/n. However, this didn't give a final answer, and even if it did, the resulting number soon surpasses the actual cost (for example, n=7 gives you an answer of 829, but an actual cost for 7 tries is 1400)