Homepage Solution manuals Ivan Niven An Introduction to the Theory of Numbers Exercise 3.2.5 (Some values of $\genfrac{(}{)}{}{}{p}{q}$)

Exercise 3.2.5 (Some values of $\genfrac{(}{)}{}{}{p}{q}$)

Find the values of ( p q ) in the nine cases obtained from all combinations of p = 7 , 11 , 13 , and q = 227 , 229 , 1009 .

Answers

Proof. Values of ( p q ) for q { 227 , 229 , 1009 } , p { 7 , 11 , 13 } .

q \ p 7 11 13
227 1 1 -1
229 -1 1 -1
1009 1 -1 -1
sage: for q in [227, 229, 1009]:
....:     print(q, [kronecker(p,q) for p in [7, 11, 13]])
....:
(227, [1, 1, -1])
(229, [-1, 1, -1])
(1009, [1, -1, -1])

User profile picture
2024-10-23 08:05
Comments