Homepage › Solution manuals › Kenneth Ireland › A Classical Introduction to Modern Number Theory › Exercise 11.4
Exercise 11.4
Calculate the zeta function of over .
Answers
Proof. Here , and .
To calculate , we calculate the number of points at infinity (such that ), and the numbers of affine points of the curve associate to
-
To estimate the number of points at infinity, we calculate first the cardinality of the set
Then takes an arbitrary value . Write
Then , thus , where
Since are fixed in , the map defined by is a bijection, therefore , and similarly . But , thus
Since is the disjoint union of the , thus
Therefore the number of projective points at infinity (such that ) is
-
Now we calculate the number of points of the affine surface
associate to the equation
(where
).
The maps
satisfy , so is a bijection. With more informal words, the arbitrary choice of gives the affine point , where .
This gives .
Therefore
We obtain in
This gives
Note: The result for is verified with the naive and very slow following code in Sage:
def N(p,s): Fs = GF(p^s) counter = 0 for x in Fs: for y in Fs: for z in Fs: for t in Fs: if x*y == z*t: counter += 1 return (counter - 1)//(p^s - 1) p, s = 5, 3 print N(p,s), p^(2*s) + 2*p^s +1
15876 15876
There is a misprint in the “Selected Hints for the Exercises” in Ireland-Rosen p.371. □