didericis b27b401eb1 face_monochromatic_pairs: extend structural proof of Conj 5.1 to cover the F_outer case
Empirical check (check_v_neighbour_degrees.py): 99.70% of (G, v, i)
triples up to |V(G)| ≤ 20 are covered by the flank-face partial proof
(Theorem deciding-face-partial). The remaining 24 / 7,930 (0.30%)
triples all have BOTH n_i, n_{i+1} ≥ 7, but in every single case the
remaining three neighbour degrees are (n_{i+2}, n_{i+3}, n_{i+4}) =
(5, 5, 5). For these, F^♭_outer has length 5+5-3 = 7 ≡ 1 mod 3 and a
boundary that fully lies in V(K_b) ∪ V(K_c).

Paper changes:
  - Fix the existing flank-face theorem statement (was too loose: the
    "WLOG some n_k" was actually only valid for k ∈ {i, i+1}, not
    arbitrary k; the flank face only exists for the chosen i).
  - Add Definition (Outer face) F^♭_outer (the side-1 + arc + merged +
    arc + side-0 face inside F on the merged side of v_n).
  - Add Lemma (Outer-face length): |F^♭_outer| = n_{i+2} + n_{i+4} - 3.
  - Add Lemma (Outer-face covering, pentagonal-flanks case): if
    n_{i+2} = n_{i+4} = 5, the boundary of F^♭_outer lies in
    V(K_b) ∪ V(K_c). Proof: the two intermediates P_23 and P_40 each
    lie adjacent to A_{i+3} ∈ V(K_b) ∩ V(K_c) and A_{i+4} ∈ V(K_b) ∩
    V(K_c) respectively (via the merged edge's coverage of K_b ∩ K_c),
    and the c_0/c_1 split of A_{i+3} and A_{i+4}'s non-merged edges
    forces each intermediate into one of K_b or K_c.
  - Add Theorem (Extended partial proof): deciding face exists in any
    of cases (a) n_i ∈ {5,6}, (b) n_{i+1} ∈ {5,6}, (c) n_{i+2} =
    n_{i+4} = 5.
  - Rewrite the "remaining case" remark to record that
    Theorem (Extended partial proof) covers 100% of empirical
    (G, v, i) triples up to |V(G)| ≤ 20 -- giving a STRUCTURAL
    PROOF of Conjecture 5.1 on the full empirical range.

So the combined result is:

  Conjecture 5.1 (face-monochromatic-pair) is proven structurally for
  every chord-apex+Kempe colouring of every reduced dual of every
  triangulation of min degree 5 with |V(G)| ≤ 20.

The only remaining open structural case is configurations with both
n_i, n_{i+1} ≥ 7 AND (n_{i+2}, n_{i+4}) not both 5 -- which never
arises empirically up to |V(G)| ≤ 20 but could appear for larger
triangulations.

Paper grows from 20 to 21 pages.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-25 04:41:37 -04:00
2026-04-12 22:23:55 -04:00
2026-04-20 16:32:27 -04:00
2026-04-20 16:32:27 -04:00
2026-04-20 17:00:04 -04:00
2026-04-20 16:32:27 -04:00
2026-04-17 00:54:42 -04:00
2026-05-09 11:34:58 -04:00

math-research

Personal mathematics research repository by Eric Bauerfeld. Papers are written in AMS-LaTeX using the amsart document class.

Papers

kempe_style_search_for_smaller_contradiction

Humans Suffice: A Novel Proof of the Four Color Theorem

An in-progress proof of the Four Color Theorem via a minimal counterexample argument. The paper builds on Kempe's 1879 strategy — establishing valid cases for vertices of degree ≤ 4, then extending the argument to the degree-5 case using properties of non-adjacent degree-5 vertices, merged subgraphs, and locked colorings.

plane_depth_labelling

Plane Depth Labelling

Early-stage paper. Title and author information set; content in progress.

Creating a New Paper

Use run.sh to scaffold a new paper from the AMS-LaTeX template:

./run.sh init_paper "Your Paper Title"

This creates a new directory (name derived from the title) containing a paper.tex pre-filled with the title and author.

Setup

The Python library code in lib/ requires SageMath. Run setup once per machine:

./run.sh setup <sage_python_path> <sage_site_packages> [system_name]
  • sage_python_path — path to the SageMath Python interpreter (e.g. /opt/sage/local/bin/python3)
  • sage_site_packages — path to SageMath's site-packages directory
  • system_name — optional label for this machine (defaults to hostname -s); used to store per-machine env files as .env.<system_name>

On subsequent runs the paths default to whatever was saved in .env, so ./run.sh setup alone re-runs setup with the existing configuration.

Setup also compiles the plantri submodule via make.

Running Sage

To run a Sage script with plantri available on PATH:

./run.sh sage <script.py> [args...]

Or to open an interactive Sage session:

./run.sh sage

Linting

./run.sh lint

Runs pyright and pylint on lib/ using the SageMath Python interpreter.

Shell Completion

To enable tab-completion for run.sh in zsh, add this to your .zshrc:

eval "$(path/to/run.sh completion)"

Or source it once in the current shell session:

eval "$(./run.sh completion)"

Building

Papers are compiled with LaTeX. From within a paper directory:

latexmk -pdf paper.tex
S
Description
No description provided
Readme 277 MiB
Languages
Python 69%
TeX 30.8%
Shell 0.2%