Calculate score with multiplier that increases in steps

Gromley

New member
Joined
Aug 20, 2013
Messages
1
Hi guys,

Im trying to solve a math problem, it's been a while since i've done any complexe math and I could definitely use some help.

I have a game where i'm calculating a score.

each time you get a score its multiplied

each 5th score you receive the multiplier increases by 1x


so for example..

1101x10
2101x10
3101x10
4101x10
5102x20
6102x20
7102x20
8102x20
9102x20
10103x30
11103x30
12103x30
13103x30
14103x30
15104x40
16104x40


The multiplier caps out at 99X

The problem i have is trying to determine whats the best possible score a player can get given a preset number of possible scores

for example say it was possible in a game to get 500 score events

you could calculate that by saying 500/5 = max possible multiplier of 50X

so 50 x 10 = 5000 max score (but I know thats not accurate since not every score is multiplied by 50X)

I'd like to find a formula that I can put in

# of score events
Score per note

and results in the best possible score if the player gets every score event
*if possible accounting for the cap of 99X

Sorry guys if this isnt the right place to ask this kind of question.

My math skills are rusty and I would appreciate and help you might be able to offer.

Edit: If it helps I'm trying to use excel to solve this...
 
Last edited:
Your table is not accurate. You said the multiplier increases every 5th score. But the table shows five scores in a row with the same multiplier. That's a changing multiplier every 6th score.

Similarly, if it changes every 5th score (meaning the multipliers are the same in blocks of 4), the number of scores is divided by 4, not 5.

For the max score (assuming 10 is the max base score):

10x1, 10x1, 10x1, 10x1, 10x2, 10x2, 10x2, 10x2...
 
Top