Homepage › Solution manuals › Ivan Niven › An Introduction to the Theory of Numbers › Exercise 3.1.4 (Some values of $(a/p)$)
Exercise 3.1.4 (Some values of $(a/p)$)
Find the values of in each of the 12 cases, and .
Answers
Proof. Using the sage function “kronecker”, we obtain
| 2 | 3 | |||
| 11 | -1 | -1 | 1 | 1 |
| 13 | 1 | -1 | -1 | 1 |
| 17 | 1 | 1 | 1 | -1 |
sage: for p in [11,13,17]: ....: print(p, [kronecker(a,p) for a in [-1,2,-2,3]]) ....: (11, [-1, -1, 1, 1]) (13, [1, -1, -1, 1]) (17, [1, 1, 1, -1])
2024-10-16 09:51