How many lines are there in the projective plane of a field with $n$ elements?

2.7k Views Asked by At

How many lines are there in the projective plane of $ \mathbb{F}_n $ ?

1

There are 1 best solutions below

2
On BEST ANSWER

The question is actually simpler than you think, but I'm going to start out from the context you supplied in the comments (which was helpful for me to gauge the solution.) I'll present several ways to see the same conclusion.

Method 1

Here is a way to count the lines if you can count the points (as you have demonstrated in the comments.)

In the projective plane, each line has $n+1$ points. Of course, any choice of two distinct points specifies a line. There are $\binom{n^2+n+1}{2}$ ways to do that. Of course, that is not the number of lines: we are duplicating the same lines over and over. The question is: how many times are we duplicating the same line?

Well, there are $\binom{n+1}{2}$ different ways to choose two points from a single line, and every time we do so, we are duplicating previous work. We should divide out by this factor, and when we do we get this

$$ \binom{n^2+n+1}{2}/\binom{n+1}{2}\\=\frac{(n^2+n+1)(n^2+n)}{2}/\frac{(n+1)n}{2}\\=\frac{(n^2+n+1)(n^2+n)}{2}\frac{2}{n^2+n}\\= n^2+n+1 $$

Gee, that's odd... this says there are as many lines as points. Is there a reason that should be the case? This leads us to backtrack and think about

Method 2

One important fact about projective planes over fields (or even division rings) is that they are self-dual. This duality states that every statement about points, lines and incidence in the plane can be changed in this way:

  • Replace the word "line" with "point"
  • Replace the word "point" with "line"
  • Replace the phrase "lies on" (as in "point lies on a line") with "contains"
  • Replace the phrase "contains" (as in "line contains a point") with "lies on".

In our case the statement is only about points: "There are $n^2+n+1$ points." By duality the transformed statement is also true: "There are $n^2+n+1$ lines."

Method 3

In the comments, you mentioned you had counted points using the model of the projective plane as a completion of the affine plane $F_n^2$. Another important model for the projective plane over $F$ is this: the points of the projective plane over $F$ are $1$-dimensional subspaces of the vector space $F^3$, and the lines of the projective plane are planes in $F^3$.

Here it is easy to count $1$-dimensional subspaces. $F_n^3$ has $n^3-1$ nonzero vectors, each of which generate a $1$-dimensinoal subspace. However, nonzero scalar multiples of a vector generates the same subspace, repeating work. We are repeating ourselves $n-1$ times, then. So there are $(n^3-1)/(n-1)=n^2+n+1$ $1$-dimensional subspaces of $F_n^3$ (aka points of the projective plane over $F_n$.) Everything mentioned in Method 1 can be translated into a statement about counting planes in $F_n^3$, and so the same number is reached. This is not really that different from Method 1, but I thought you might find the viewpoint useful.