Increasing point calculation

41 Views Asked by At

How to calculate the increasing point if known variables are sum of total increase points and the first point.

For example, I have the first number of 1000, and I have 37 points until the last one. Sum of all points should be 107300.

So I have to calculate what number I need to add to every increasing point.

Example:

1st increasing point: 1000 + 100 = 1100
2nd increasing point: 1100 + 100 = 1200
...
37th increasing point: = 4600 + 100 = 4700

I need to know how to calculate this increasing number (100), as I only know the sum of all points is 107300 and the first point is 1000.

EDIT: I'll explain with my chart example. I have an xy axis in which y represents total bookings and x represents month. So I have set goal that I would like to have 107300 bookings in that 37 months. Currently I have 1000 bookings, and I need to calculate for what number my bookings needs to be increased for every month so I could reach 107300 bookings in 37 months.

1

There are 1 best solutions below

0
On

I still don't have a clear idea what you mean. As far as I could get, you have a finite artihmetic sequence: $$\begin{align}a_1& \\a_2&=a_1+r,\\ a_3&=a_1+2r,\\ \vdots\\ a_n&=a_1+(n-1)r.\end{align}$$ Is that correct?

And you know $a_1$ and $n$, as well as the sum $S_n=a_1+a_2+\ldots+a_n=\sum_{i=1}^n a_i.$
And you want to find the value of $r$, right?

The sum of a finite arithmetic sequence is $$S_n = \sum\limits_{i=1}^n a_i = n\cdot\frac {a_1+a_n}2$$ so $$S_n = n\cdot\frac {2a_1+(n-1)r}2$$

Now you just need to plug in the known values of $n, a_1$ and $S_n$ and solve the simple equation for unknown $r$.