Numerical Invariants of a Plane

Order(P) : Plane -> RngIntElt
The order of the plane P.
NumberOfPoints(P) : Plane -> RngIntElt
# V : PlanePtSet -> RngIntElt
The cardinality v of the point--set V of the plane P.
NumberOfLines(P) : Plane -> RngIntElt
# L : PlaneLnSet -> RngIntElt
The cardinality v of the line--set L of the plane P.
pRank(P) : Plane -> RngIntElt
The p-rank of the plane P of order pt.
pRank(P, p) : Plane, RngIntElt -> RngIntElt
The p-rank of the plane P.

Example Plane_invar (H150E6)

We demonstrate some of the above functions with the plane PG2(8).
> P := FiniteProjectivePlane(8);
> NumberOfLines(P);
73
> Order(P);
8
> pRank(P);
28
> pRank(P, 2);
28
> pRank(P, 3);
72
> pRank(P, 5);
73
V2.28, 13 July 2023