Ask HN: How do I properly calculate category weights?

2 points by baccheion ↗ HN
Someone will answer a series of questions and will mark each important (I), very important (V), or extremely important (E). I'll then match their answers with answers given by everyone else, compute the percent of the answers in each bucket that are the same, then combine the percentages to get a final score.

For example, I answer 10 questions, marking 3 as extremely important, 5 as very important, and 2 as important. I then match my answers with someone else's, and they answer the same to 2/3 extremely important questions, 4/5 very important questions, and 2/2 important questions. This results in percentages of 66.66 (extremely important), 80.00 (very important), and 100.00 (important). I then combine these 3 percentages to get a final score, but I first weigh each percentage to reflect the importance of each bucket. So the result would be something like: $score = E * 66.66 + V * 80.00 + I * 100.00$. The values of E, V, and I (the weights) are what I'm trying to figure out how to calculate.

The following are the constraints present:

$1 + X + X^2 = X^3$

$E >= X * V >= X^2 * I > 0$

$E + V + I = 1$

$E + 0.9 * V >= 0.9$

$0.9 > 0.9 * E + 0.75 * V >= 0.75$

$E + I < 0.75$

When combining the percentages, I could give important a weight of 0.0749, very important a weight of .2501, and extremely important a weight of 0.675, but this seems arbitrary, so I'm wondering how to go about calculating the optimal value for each weight. Also, how do I calculate the optimal weights if I ignore all constraints?

As far as what I mean by optimal: while adhering to the last 4 constraints, I want the weight of each bucket to be the maximum possible value, while having the weights be as far apart as possible (extremely important questions weighted maximally more than very important questions, and very important questions weighted maximally more than important questions).

0 comments

[ 2.9 ms ] story [ 9.5 ms ] thread

No comments yet.