Percentage Exponential Distribution

Desolrit

New member
Joined
Apr 13, 2015
Messages
1
I have 15 values (non-numerical), each assigned a percentage of probability;
-1st is 80%
-15th is 0.1%

How would I assign the remaining 19.9% to the other 13 values, the chance exponentially decreasing from 80% and 0.1%?

Thanks in advance.
 
I have 15 values (non-numerical), each assigned a percentage of probability;
-1st is 80%
-15th is 0.1%

How would I assign the remaining 19.9% to the other 13 values, the chance exponentially decreasing from 80% and 0.1%?

Thanks in advance.
You may, or may not, be able to get a simple geometric expression. First, lets assume a simple geometric progression so that
aj = A rj, j = 0, 1, 2, ..., 14
Since the sum of all the probabilities must be 1, we have
\(\displaystyle A \overset{14}{\underset{j=0}{\Sigma}} r^j = 1\)
or
r = 1 - A (1 - r15)
The reason I wrote it that way is that iteration scheme, i.e.
rj+1 = 1 - A (1 - rj15)
with r0=0.5 converges fairly fast for reasonable A. You would then have to check to see if aj were equal to 0.001. It doesn't in this case
 
Just because I got interested. Notice there is some overflow/underflow (accuracy) problems for very small A.
Aa(14)r
0.0100.0101.000
0.0120.0121.000
0.0140.0141.000
0.0170.0171.000
0.0210.0211.000
0.0250.0251.000
0.0300.0301.000
0.0360.0350.999
0.0430.0410.997
0.0520.0470.994
0.0620.0510.986
0.0740.0500.973
0.0890.0450.952
0.1070.0370.927
0.1280.0280.896
0.1540.0190.863
0.1850.0130.826
0.2220.0070.784
0.2660.0040.736
0.3190.0010.682
0.3830.0000.617
0.4600.0000.540
0.5520.0000.448
 
Last edited:
Exponentially means compounding; changing your range:
decreasing from 800 to 1 (same thing!).
Same as going the other way: 1 to 800 in 15 years;
a deposit of $1 grow to $800 in 14 years:
1(1 + i)^14 = 800 ; solve for i : ~.612 (61.2 %).

1,2,3,5,7,11,18,28,46,73,118,191,308,496,800

Above are rounded; as example, the 5th term "7" is really 6.752....

Example of calculation (last 2 terms): 496 * 1.612 = 800.
What you have said is true but only considers the number as numbers and not as probabilities. That is the numbers need to be normalized so that their sum is 1 if they are to be treated as (exclusive) probabilities. So, letting x = 1+i ~ 1.612, we want
a \(\displaystyle \Sigma_{i=0}^{14}\, x^i\) = 1
or
a = (x-1)/(x15 - 1) ~ .000475
or that 800 would turn into about 0.38. Please note that in the table provided A=0.383 gives an r of 0.617 or an x = 1/r = 1.621, that is the same to two decimal places which is probably what one could expect toward either end of the table.
 
Top