Affine Vector Space Partitions
Here I provide links to most of my collection of small affine vector space partitions (AVSPSs) in my Dropbox folder. This complements this preprint with John Bamberg, Yuval Filmus, and Sascha Kurz. The format is described below.
AVSPs
Classifications
- AG(3, 2), 1 partitions.
- AG(3, 3), 2 partitions.
- AG(4, 2), 9 partitions.
- AG(5, 2), 1050 partitions, up to size 9 and type 4^2 2^8, 212K.
- AG(6, 2), 4 partitions, up to size 8.
Hyperbolic Quadric Examples
- AG(6, 2), 1 example.
- AG(6, 3), 1 example.
- AG(6, 4), 3 examples.
- AG(6, 5), 1 example.
- AG(6, 8), 1 example.
File Format
The file format is as follows (for now my description is in Perl-style regular expressions):
- Ignore everything till a row matches
/^n=([0-9])^+/
. Put n=$1. - Ignore everything till a row matches
/^q=([0-9])^+/
. Put q=$1. - Ignore everything till a row matches
/^T=[0-9]^+/
. Put T equal to the array/([0-9]^+)/g
for that row. - Now follows an avsp in AG(n-1, q) with parts of size T[0], T[1], ..., T[$#T]. Ignore everything except for characters in the alphabet A = [0-9a-zA-Z]. Let alpha be a primitive element of GF(q). Then we read 0 as 0 in GF(q) and any other element beta of A as alpha^beta. Here we read a=10, b=11, ..., Z=61. (No field sizes larger than 61 are supported.) T[0] consists of the first T[0]*n elements of A: The first n elements are the first basis vector of T[0], the next n are the second basis vector, and so on.
- After all T[i]'s are read, repeat (or stop if the file ends).
Here is an example describing the unique partion of type 2^4 in AG(3, 2). We can use anything as delmiters in row 3. The commas and line breaks from line 4 to 7 are optional.
Here is an example describing the two partions of type 2^4 in AG(3, 3).