As part of a software development project, I'm trying to find the correct mathematical approach for a statistics problem involving scores, weights and averages. Here's a simplified summary of the problem:
I have a security incident and I want to determine its overall severity on a scale of 0.0 to 10.0. I have 5 people who are experts in different security areas, and each individual has given me their own severity score for the incident on the same scale (0.0-10.0). The set of scores may look like so:
[0.4, 8.6, 2.4, 3.6, 3.8]
From these scores I need to determine the final incident severity score. However, the opinions of the 5 security experts are not of equal importance and should be weighted accordingly.
My initial approach involved using weights as a multiplier, so that the following scores and weights:
scores = [0.4, 8.6, 2.4, 3.6, 3.8]
weights = [0.5, 1.1, 1.0, 0.5, 0.5]
Would look like so, once the weights had been applied:
weighted_scores = [0.2, 9.46, 2.4, 1.8, 1.9]
I'm unsure though of how to reach a final score from these weighted scores. I can't simply find the arithmetic mean because a low score with a low weight means a greater effect on the final score, but I need the opposite to happen. In the case of the above set of weighted score; the lower the score, the lower its dampening effect should be on the final incident severity score.
I'm a complete mathematics novice (at best) so apologies in advance if this isn't clear. I'm not sure if mathematics alone can solve this problem. Some of it might need to be implemented at the software level.