I am a programmer, I am in a situation that requires a mathematical equation. I just hope to know the final equation that solves the problem (step by step solution is not necessary). Of course I will not use any programming jargon in describing the problem.
I developed a program for "speed reading training": You feed it with a text "story, article, ...", then it flashes these words one by one on the screen at a specified rate (speed).
If you have a text of 500 words.
You have a number of parameters to set.
Speed: number of words per minute (say 250 words/minute)
The usual expectation for the 500 words is to take 2 minutes to finish flashing word by word on the screen, it is OK.
If you have two extra correlated parameters:
Increase every & Increase amount
Increase every: Increase the speed every N milliseconds. (say 1000 milliseconds)
Increase amount: The increase amount is N words/minute (say 1 word/minute)
Now you have 500 words, and the parameters are set to;
Speed: 250 words/minute
Increase every: 1000 milliseconds
Increase amount: 1 word/minute
The program starts flashing the 500 words at a speed of 250 words/minute.
After every 1000 milliseconds the speed which is (250 words/minute) increased by one, so after the first second it will be 251 words/minute; and so on.
After finishing all the 500 words: The final speed became 349 words/minute.
Now based on the above description; if you have all these information:
Number of words (text) is 500 words
Starting speed: 250 words/minute
Increase every: unknown
Increase amount: 1 word/minute
The final speed (known in advance): 349 words/minute.
Is it possible to deduce the unknown Increase every?.