I have data tasks which involve a little bit of math - which is really not my strong suit - hope you can help.
Background
Respondent has been given a question that they answer with options on a discrete 0:10 scale. One of the answers is "the true" response, so if each of the (11) options is assigned a (subjective) probability the sum of these probabilities must be 100%. So...
Options on the scale: 0, 1 , 2 , 3, 4, 5, 6, 7, 8, 9, 10.
$p(o_0)+p(o_1)+...p(o_i)...+p(o_9)+p(o_{10})$ = 1.0 = 100%
What I plan to do is the following:
First. If a respondent answers some option $o_i$. I want to assign, to the respondent's option, a subjective probability, let's call it $p(o_k)$.
Then. Spread the remaining $1-p(o_k)$ probability over the other options; with the probability of each option declining as the distance from $o_k$ increase. All options must be assigned a non-zero probability.
Problem
What I can't solve is what function would give me the probability of an option on the scale, given:
- The probability of the respondent's option.
- The distance, on the scale, of an option from the respondent's option.
- That the sum of the probabilities of all options, on the scale, is 1.
Example
The respondent has answered option 4. I assign to option 4 a 25% chance of being true. Then there's a 75% probability of one of the other options is the true option. But what probability to assign each individual option if it is to decline with the distance (absolute difference) from 4?
I hope this was sufficiently clear. Have a great day.
If you definitely want to keep the first probability $p(o_k)$ unchanged, then you can just pick an arbitrary relative assignment to the others and scale it.
For example, suppose you fix $p(o_k)$. Then for $j\neq k$, put $n_j=1/|j-k|$ (which decreases as $j$ gets further from $k$, but you can pick anything that does this; the scale will be adjusted to compensate below).
The total for these other picks is $S=\sum\limits_{j\neq k}n_j$. Scale the sum to the desired remainder by multiplying by $(1-p(o_k))/S$. Then the desired probabilities for the other items are $$p(o_j) = (1-p(o_k))\frac{n_j}{S}$$ for each $j\neq k$.
Note that the total probability over all items (assuming $N$ items altogether) is $$p(o_1)+p(o_2)+\cdots+p(o_N)$$ $$=p(o_k)+\sum_{j\neq k}p(o_j)$$ $$=p(o_k)+\sum_{j\neq k}\left((1-p(o_k))\frac{n_j}{S}\right)$$ $$=p(o_k) + \left(\frac{1-p(o_k)}{S}\right)\sum_{j\neq k}n_j$$ $$=p(o_k) + \left(\frac{1-p(o_k)}{S}\right)S$$ $$=p(o_k) + (1-p(o_k))$$ $$=1$$