found a counterexample

This commit is contained in:
2025-10-24 16:02:48 +08:00
parent 18b69540bc
commit 1363de0328
2 changed files with 10 additions and 0 deletions

View File

@@ -6,3 +6,12 @@ n=7 , m=10 graph gap = 1 projection gap = 2 factor=2
[1 0 0 1 0 0 1 0 0 0 1] [1 0 0 1 0 0 1 0 0 0 1]
[0 1 0 0 1 0 0 1 0 0 1] [0 1 0 0 1 0 0 1 0 0 1]
[0 0 1 0 0 1 0 0 1 1 1] [0 0 1 0 0 1 0 0 1 1 1]
n=8 , m=14 graph gap = 1 projection gap = 15/7 factor=15/7 max=2.1428571428571432
[1 1 1 0 0 0 0 0 0 0 0 0 0 0 1]
[0 0 0 1 1 1 0 0 0 0 0 0 0 0 1]
[0 0 0 0 0 0 1 1 1 0 0 0 0 0 1]
[0 0 0 0 0 0 0 0 0 1 1 1 0 0 1]
[0 0 0 0 0 0 0 0 0 0 0 0 1 1 1]
[1 0 0 1 0 0 1 0 0 1 0 0 0 0 1]
[0 1 0 0 1 0 0 1 0 0 1 0 1 0 1]
[0 0 1 0 0 1 0 0 1 0 0 1 0 1 1]

View File

@@ -1,5 +1,6 @@
# cogirth-packing gap of projections of graphic matroids # cogirth-packing gap of projections of graphic matroids
# see if gap(projection) <= 2 * gap(graph) # see if gap(projection) <= 2 * gap(graph)
# this is wrong. see the last matrix in projection.out
from sage.all import * from sage.all import *
from sage.matroids.all import * from sage.matroids.all import *