Consider the following situation:
Take some integer $N$
Each day there is a:
- $p_1$ probability that $N$ will increase by $n_1$ % of its current value
- $p_2$ probability that $N$ will decrease by $n_2$ % of its current value
- $p_3 = 1- p_1+ p_2$ probability that $N$ keep its current value
My Question: On any given day, I am trying to find out what possible values $N$ can assume - and what are the probabilities of assuming these values.
To solve this question, I first wrote the possible values that $N$ can take on the first day:
$$N_{1} = N \times [ p_3 + p_1(1+n_1) + p_2(1-n_2)]^{1}$$
On the second day, we can write:
$$N_{2} = N \times [ p_3 + p_1(1+n_1) + p_2(1-n_2)]^{2}$$
$$ N_{2} = N \times [p_3^2 + 2p_3p_1(1+n_1) + 2p_3p_2(1-n_2) + p_1^2(1+n_1)^2 + 2p_1(1+n_1)p_2(1-n_2) + p_2^2(1-n_2)^2]$$
By analyzing the above expression, I can indirectly see that on the second day, $N$ can have 9 possible values:
- $N$ can happen one possible way with probability $p_3^2$
- $N*(1+n_1)$ can happen two possible ways with a total probability $2*p_3p_1$
- $N*(1-n_2)$ can happen two possible ways with a total probability $2*p_3p_2$
- $N*(1+n_1)^2$ can happen one possible way with probability $p_1^2$
- $N*(1+n_1)(1-n_2)$ can happen two possible ways with a total probability $2*p_1p_2$
- $N*(1-n_2)^2$ can happen one possible way with probability $p_2^2$
Based on this, I can observe that : $$(p_1 + p_2 + p_3)^2 = p_3^2 + 2p_3p_1 + 2p_3p_2 + p_1^2 + 2p_1p_2 + p_2^2 = 1$$
Thus, it would appear that I could find out all possible values that $N$ can assume on any given day along with the corresponding probabilities using the relationship:
$$N_{k} = N \times [ p_3 + p_1(1+n_1) + p_2(1-n_2)]^{k}$$
Is my understanding correct?
Can this above logic be used to expand any Probability Function corresponding to any Discrete Random Variable - and thus find out the possible values and corresponding probabilities that a Discrete Random Variable can take in the future?
And is there a more compact way (in mathematical notation) to represent this expansion in the general case?
Thanks!
Note:
- The following relationship (Multinomial Theorem : https://en.wikipedia.org/wiki/Multinomial_theorem) can be useful here:
$$(x_1 + x_2 + ... + x_m)^n = \sum_{k_1=0}^n \sum_{k_2=0}^n ... \sum_{k_m=0}^n \binom{n}{k_1, k_2, ..., k_m} x_1^{k_1} x_2^{k_2} ... x_m^{k_m} = \sum_{k_1=0}^n \sum_{k_2=0}^n ... \sum_{k_m=0}^n \frac{n!}{k_1! k_2! ... k_m!} x_1^{k_1} x_2^{k_2} ... x_m^{k_m} $$