Homepage › Solution manuals › Kenneth Ireland › A Classical Introduction to Modern Number Theory › Exercise 11.7
Exercise 11.7
Try this exercise if you know a little projective geometry. Let be the number of lines in . Find and calculate . (The set of lines in projective space form an algebraic variety calles a Grassmannian variety. So do the set of planes three-dimensinal linear subspaces, etc.)
Answers
Proof. Write . The set of lines in is in bijective correspondence with the set of planes of the vector space . To count these planes, consider the set of linearly independent pairs of the space , and the set of planes of , and
The set of pre-images of a fixed plane in is the set of basis of this plane . Thus, to obtain , we divides the number of linearly independent pairs of the space by the number of basis of a fixed plane. To build such a pair, we choose first a nonzero vector , and then a vector not on the line generated by . Therefore
□If is odd, then
where is the cardinality of the set
We note that gives
that is
and each such gives a unique pair in .
- If , then , thus .
- If , then , thus .
If is odd, we have proved that
If is even, then
where is the cardinality of the set
Here gives
that is
and each such gives a unique pair in .
- If , then , thus .
- If , then , thus .
If is odd, we have proved that
This is the same formula as in the odd case ! To conclude, for all dimension ,
therefore
This gives the order of the poles of .
To verify the equality between the two formulas giving , we test this equality with a Sage program.
def N(n,p,s): q = p^s num = (q^(n+1) - 1)*(q^(n+1) - q) den = (q^2 - 1)*(q^2-q) return num // den def M(n,p,s): q = p^s a = sum((floor(r/2) +1)*q^r for r in range(n)) b = sum((n - ceil(r/2))*q^r for r in range(n,2*n-1)) return a+b N(4,5,3),M(4,5,3)
(3845707062626, 3845707062626)