Exercise 3.1.4 (Some values of $(a/p)$)

Find the values of ( a p ) in each of the 12 cases, a = 1 , 2 , 2 , 3 and p = 11 , 13 , 17 .

Answers

Proof. Using the sage function “kronecker”, we obtain

1 2 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])

User profile picture
2024-10-16 09:51
Comments