/** * The distribution of word lengths in a corpus is quite different than the * distribution of answer lengths in a puzzlehunt. * * These numbers are based on Mystery Hunt answers from 1994 to 2025, as * pulled from https://github.com/dgulotta/mh_answers, with recent years * weighed more heavily. */ export const answerLengthLogProbs: [number, number][] = [ [1, -7.047625911102525], [2, -6.236695694886197], [3, -3.838800422087826], [4, -2.6750184983451355], [5, -2.5947331605600117], [6, -2.4056417519917175], [7, -2.299438218279509], [8, -2.325784418310741], [9, -2.273768359596283], [10, -2.3562780288733816], [11, -2.7401881334197165], [12, -2.806299158531779], [13, -2.974334758078257], [14, -3.3189249628019173], [15, -3.775209319306295], [16, -3.6217359168499983], [17, -4.25187012958121], [18, -4.454238618320455], [19, -4.473107102624838], [20, -4.864387575741046], [21, -5.463505806652715], [22, -5.831230586778032], [23, -5.7597716227958875], [24, -5.831230586778032], [25, -5.725870071120206], [26, -6.642160802994361], [27, -6.293854108726145], [28, -5.949013622434416], [29, -6.35447873054258], [30, -5.831230586778032], [31, -7.047625911102525], [32, -7.517629540348261], [33, -7.517629540348261], [34, -6.824482359788315], [35, -7.181157303727048], [36, -6.488010123167102], [37, -7.047625911102525], [38, -7.335307983554306], [39, -7.517629540348261], [40, -8.028455164114252], [41, -8.028455164114252], [42, -7.335307983554306], [43, -7.74077309166247], [45, -7.181157303727048], [50, -8.028455164114252], [52, -9.127067452782361], [54, -7.517629540348261], [56, -8.433920272222416], [60, -7.74077309166247], [67, -8.433920272222416], [86, -8.028455164114252], [100, -8.433920272222416], ];