In the comments you wrote:
It says. "The first ten digits (x1 through x10)are an identifier; the final digit is a check digit that satisfies the following", then it lists the equation. It's a textbook exercise and it's confusing me. The answers listed to choose from, are 1, 4, 5 or 8. I haven't a clue what operation I should be using. It gives the numbers "7555618873_" I'm assuming the blank is where x11 goes
So in this $x_1=7; x_2 =5; x_3 = 5;..... x_{10}=3$
So $x_{11} = 7+5+5+5+6+1+8+8+7+3 \mod 9$.
"casting out nines" I get $7\equiv -2;5+5\equiv 1;5+6\equiv 2; 1+8\equiv 0;8\equiv -1;7+3 \equiv 1$ so $-2+1+2-1+1 \equiv 1\mod 9$
So $x_{11} = 1$
So the number is $75556188731$
The little "subnumber" $i$ in $x_i$ is just a way of saying "we are going to refer to the $i$th digit as $x_i$". Instead of writing:
Let $a$ be the first digit. Let $b$ be the second digit. .... Let $\overline{\not{\mu}}$ be the 478th digit. Let....
Simply say:
Let $\{x_i\}$ be a set of variables so that $x_i$ represents that $i$-th digit.
The actual values of the $i$ (called the "index") doesn't have anything to do with the value or any operation. It is merely a way of saying, it's the $i$th item in a list.