The first equation shown is for the RHETI, or any other test where the
maximum possible score in any type is 32, and the minimum is 0. This is the
simple version of the equation, but only works for tests like the RHETI, where
the maximum score in a type is 32.
f(n) = 0 <= n < 9 -> 0
9 <= n < 14 -> 1
14 <= n < 19 -> 2
19 <= n < 24 -> 3
24 <= n < 33 -> 4
d(type t) = f( t's dominant wing score ) +
f( t's dominant s/s point score ) +
f( t's dominant harmonic score )
g(type t) = t's score - ( 12 - d( t ) )
total(type t) = t's score + d( t )
Start with the type with the highest score and calculate 'd' of the type, and
'total' of the type. Then calculate 'g' of the type. The number you get from
'g' is the minimum score; you can ignore all Types with scores below this
number as being potential core types. Then get the type with the next highest
score and repeat. Stop when there are no types left with a score at least
equal to the highest 'g' value.
Nothing beats an example.
Type : 1 2 3 4 5 6 7 8 9
Score: 10 13 12 19 25 12 21 6 26
The highest score is in Type 9. 9's dominant wing is 1, the dominant S/S
point is either 3 or 6 (they have the same score), and the dominant harmonic
is 7.
d( type 9 ) is then:
f(9's dom. wing score)+f(9's dom. s/s point score)+f(9's dom. harmonic score) =
f( 10 ) + f( 12 ) + f( 21 ) =
1 + 1 + 3 =
5
total( type 9 ) is:
9's score + d( type 9 ) =
26 + 5 =
31
g( type 9 ) is:
9's score - ( 12 - d( type 9 ) ) =
26 - ( 12 - 5 ) =
19
Since 'g' is 19, we can ignore all types with a score less than 19 as
potential core types, which rules out 1, 2, 3, 6, and 8, and leaves 4, 5, and
7 as potentials.
The next highest score is 5, and we repeat. 5's dominant wing is 4,
its dominant s/s point is 7, and its dominant harmonic is also 7.
d( type 5 ) is:
f( 19 ) + f( 21 ) + f( 21 ) =
3 + 3 + 3 = 9
total( type 5 ) is:
25 + 9 = 34
g( type 5 ) is:
25 - ( 12 - 9 ) = 25 - 3 = 22
and we can rule out any type with a score less than 22, which eliminates all
other Types as potential core types.
In the end, we have:
Type : 9 5
Total: 31 34
So the odds are good that, while 9 has a higher score than 5, 5 is really the
dominant type. This is because 5 has relatively strong scores in its wing,
s/s points, and harmonics, while 9 has relatively weak scores in these areas.