Commit dda085a
ordinal(buchholz): Slice 3 headline — rank-mono-<ᵇ-+1-via-head-Ω under strict-head premise
Closes the joint-bplus rank-mono case for `_<ᵇ-+1_` headline-level
via Route A from RankPowSlice3's design note. The headline takes
the strict-head premise `head-Ω x₁ <Ω head-Ω y₁` as an external
hypothesis; the caller (the umbrella's case-split on `x₁ <ᵇ y₁`)
decides where to source it:
* x₁ = bOmega μ: `head-Ω-inv-bOmega` is strict, applies directly.
* x₁ = bpsi ν α at strict `ν <Ω head-Ω y₁`: `head-Ω-inv-bpsi`
upgraded via strictness witness (when not the `<ᵇ-ψΩ≤`
constructor).
* x₁ = bpsi ν α at equality `ν ≡ head-Ω y₁`: caller dispatches
to `rank-mono-<ᵇ-ψΩ≤-lex` (rank-lex second-component) instead
of this headline.
* x₁ = bplus a b: `head-Ω (bplus a b) = head-Ω a` (definitional),
recurse on the leftmost-leaf.
## What this lands
New module `Ordinal.Buchholz.RankPowSlice3Headline`:
* `rank-mono-<ᵇ-+1-via-head-Ω : ∀ {x₁ x₂ y₁ y₂} →
WfCNF (bplus x₁ x₂) → WfCNF (bplus y₁ y₂) → NonBzero y₁ →
head-Ω x₁ <Ω head-Ω y₁ →
rank-pow (bplus x₁ x₂) <′ rank-pow (bplus y₁ y₂)`
The proof composes the four Slice 3 prerequisites in a chain
(no structural recursion; the recursion is already discharged by
`rank-pow-dominated-by-head-Ω` on the source's WfCNF):
1. rank-pow source <′ ω-rank-pow-succ (head-Ω x₁) — Slice 2-bplus
(`rank-pow-dominated-by-head-Ω`) + head-Ω-bplus.
2. ω-rank-pow-succ (head-Ω x₁) ≤′ ω-rank-pow (head-Ω y₁) —
`ω-rank-pow-succ-≤-via-<Ω` (the strict-jump bridge).
3. ω-rank-pow (head-Ω y₁) ≤′ rank-pow y₁ — `head-Ω-lower-bound`.
4. rank-pow y₁ ≤′ rank-pow (bplus y₁ y₂) — `⊕-left-≤-sum`.
All four compose via `≤′-trans` (recall `α <′ β = osuc α ≤′ β`).
Wired into `proofs/agda/All.agda` adjacent to `RankPowSlice3`,
pinned in `Ordinal/Buchholz/Smoke.agda` under its own `using` block.
## What this does NOT discharge
The bpsi-source-at-equality (`ν = head-Ω y₁`) case still requires
a rank-adm / rank-lex combination. This module makes the headline
AVAILABLE for the strict-head cases; the umbrella's case-split is
the remaining wiring (a separate follow-on slice).
## Build invariant
* `Ordinal/Buchholz/Smoke.agda` exits 0 under `--safe --without-K`,
zero postulates.
* `RankPowSlice3Headline.agda` compiles standalone same flags.
* `scripts/kernel-guard.sh` PASS.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 0826e52 commit dda085a
3 files changed
Lines changed: 170 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
138 | 138 | | |
139 | 139 | | |
140 | 140 | | |
| 141 | + | |
141 | 142 | | |
142 | 143 | | |
143 | 144 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
465 | 465 | | |
466 | 466 | | |
467 | 467 | | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + | |
| 475 | + | |
| 476 | + | |
| 477 | + | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
0 commit comments