I am trying to solve a problem to find the order of some integers with (mod 9). I understand the concept I also have the solution to the problem. My calculations are also correct except for a few mistakes.
The questions is :
"What order can an integer have (mod 9)? Find an example of each."
2 and 5 has order 6 with mod 9. As:
$2^6 \equiv 1\pmod 9$
$5^6 \equiv 1 \pmod 9$
4 and 7 has order 3 mod 9. As:
$4^3 \equiv 1 \pmod 9$
$7^3 \equiv 1 \pmod 9$.
and 8 has order of 2 mod 9. As:
- $8^2 \equiv 1 \pmod 9$.
The books gives the solution as follows:
"1,2,3, or 6."
Because
"(2 and 5 have order 6, 4 and 7 have order 3, 8 has order 2, and 1 has order 1)."
Now what does the first line
"1,2,3, or 6." in the solution mean?
Is it just a typo? Or do I miss something?
As far as I know 3 and 6 do not have a solution as the (mod 9) to power of 3 only gives 2 values as $3^2 \equiv 0 \pmod 9$.
*Update: So by various comment i understood 1,2,3,6 are possible values of order. So how can I know only these (1,2,3,6) are values of power which are possible order?. Is there any method to calculate or know this that these are only potential order values?
(I understood the solution already just made this update so other people can understood it too in-case someone is looking at this problem for solution) Reference : Introduction to Number Theory by Underwood Dudley (2nd edition),pp 75.