A risk assessment system deploys 5 parallel Claude agents to independently evaluate the same loan application. The architect must aggregate their risk scores (each returns High/Medium/Low with a confidence score) into a single decision. Scores arrive as: 3x High (confidence 0.9, 0.85, 0.8), 1x Medium (confidence 0.7), 1x Low (confidence 0.6). Which aggregation strategy is most appropriate for a financial risk context where false negatives (approving risky loans) are costly?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Here's the deal — d is correct because in financial risk contexts, the cost of false negatives (approving a risky loan) typically exceeds the cost of false positives (rejecting a safe loan). A conservative consensus rule that elevates to the highest risk category when any agent exceeds a confidence threshold ensures that high-confidence risk signals are not diluted by lower-confidence dissenting agents.
Full explanation below image
Full Explanation
D is correct because in financial risk contexts, the cost of false negatives (approving a risky loan) typically exceeds the cost of false positives (rejecting a safe loan). A conservative consensus rule that elevates to the highest risk category when any agent exceeds a confidence threshold ensures that high-confidence risk signals are not diluted by lower-confidence dissenting agents. This asymmetric rule reflects the asymmetric cost structure. A is wrong because majority vote ignores confidence scores — a 0.6-confidence Low vote and a 0.9-confidence High vote carry equal weight, which is inappropriate when confidence information is available. B is wrong because confidence-weighted voting still allows low-confidence dissenting votes to reduce the overall score below what the high-confidence majority indicates — in a risk-averse context, this averaging is dangerous. C is wrong because median confidence-based selection is a heuristic that conflates the confidence of individual assessments with the risk category selection — the correct risk output is High in this case, but the reasoning (median confidence) is incorrect and would fail in other distributions.