(10 pts)
Let’s build a repeating decimal based on your name as follows.
First, we’ll convert the letters of your name to digits by taking their position in the alphabet mod 10. You might think of “mod 10” as only caring about the digits in the one’s place. For example, my first name is “Mark” and the positions of those letters in the alphabet are
{M: 13, a: 1, r: 18, k: 11}
These yield the digits 3, 1, 8, and 1.
Now, write down the decimal expansion whose first few digits past decimal point are given by your first name and whose remaining digits are a repeating block of length two determined by your middle and last initial.
For example, my name is “Mark C McClure”. Thus, my number is
Problem:
Convert your very own repeating decimal to a fraction.