Browse · MATH
Printjmc
number theory intermediate
Problem
The letters of the alphabet are given numeric values based on the two conditions below.
Only the numeric values of and are used.
Starting with A and going through Z, a numeric value is assigned to each letter according to the following pattern:
Two complete cycles of the pattern are shown above. The letter A has a value of B has a value of F has a value of and Z has a value of What is the sum of the numeric values of the letters in the word ``numeric''?
Only the numeric values of and are used.
Starting with A and going through Z, a numeric value is assigned to each letter according to the following pattern:
Two complete cycles of the pattern are shown above. The letter A has a value of B has a value of F has a value of and Z has a value of What is the sum of the numeric values of the letters in the word ``numeric''?
Solution
The cycle has length . So the numeric value of a letter is determined by its position within the alphabet, modulo . So we determine the positions of all the letters in the word and use them to find the values:
n is the th letter. , so its value is .
u is the st letter. , so its value is .
m is the th letter. , so its value is .
e is the th letter. , so its value is .
r is the th letter. , so its value is .
i is the th letter. , so its value is .
c is the rd letter. , so its value is .
The sum is .
n is the th letter. , so its value is .
u is the st letter. , so its value is .
m is the th letter. , so its value is .
e is the th letter. , so its value is .
r is the th letter. , so its value is .
i is the th letter. , so its value is .
c is the rd letter. , so its value is .
The sum is .
Final answer
-1