Commit 3890530
proof(ordinal): doubled-ladder bzero- + plus-source rank2-mono primitives (#206)
## What
New module `Ordinal/Buchholz/RankDoubledLadderMonoPlus.agda` — the
per-constructor `rank2`-mono primitives for the `_<ᵇ_` constructors
whose monotonicity is pure `⊕`-weakening / positivity (no admissibility,
no additive-principality):
```agda
rank2-pos-bOmega : oz <′ rank2 (bOmega μ) -- <ᵇ-0-Ω
rank2-pos-bpsi : oz <′ rank2 (bpsi ν α) -- <ᵇ-0-ψ
rank2-mono-0-+ : oz <′ rank2 x → oz <′ rank2 (bplus x y) -- <ᵇ-0-+
rank2-mono-Ω+ : rank2 (bOmega μ) <′ rank2 x → rank2 (bOmega μ) <′ rank2 (bplus x y) -- <ᵇ-Ω+
rank2-mono-ψ+ : rank2 (bpsi ν α) <′ rank2 x → rank2 (bpsi ν α) <′ rank2 (bplus x y) -- <ᵇ-ψ+
```
## How
- **bzero-source positivity**: the Ω-block / ψ-block leading rank is
positive (`ω-rank-pow-pos`), chained up to the target via
`ω-rank-pow-<-succ` / `⊕-left-≤-sum`.
- **plus-source** (`<ᵇ-Ω+`, `<ᵇ-ψ+`): the constructor recurses on a
sub-derivation `atom <ᵇ x`; given the recursive result (the IH, taken as
the premise), the bplus target only adds on the right, so `⊕-left-≤-sum`
finishes.
Stated relation-agnostically, mirroring RankPow's per-constructor family
— the consumer pattern-matches on its constructor, recurses, applies the
matching primitive.
## Progress
With #205's four atomic-boundary primitives, **9 of the 12** core `_<ᵇ_`
constructors now have `rank2`-mono.
**Remaining** (final umbrella slice): the three bplus-on-left cases
`<ᵇ-+Ω/+ψ/+1`, which need additive-principality of the `rank2` target
(`additive-principal-ω-rank-pow-succ`) + the joint-bplus tail bound `y
≤ᵇ x` — the same shape that made the single-ladder `<ᵇ-+1` Gate 1's last
residual — then the full `rank2-mono` umbrella + the `wf-<′`-transport
headline `wf-<ᵇ`.
## Verification
- `agda -i proofs/agda proofs/agda/All.agda` exits 0 under `--safe
--without-K`.
- Five headlines pinned in the Buchholz `Smoke.agda` (own block).
- Zero postulates / escape pragmas.
https://claude.ai/code/session_017t53M7W7ubmXpwymveLcCE
---
_Generated by [Claude
Code](https://claude.ai/code/session_017t53M7W7ubmXpwymveLcCE)_
Co-authored-by: Claude <noreply@anthropic.com>1 parent c2c6a44 commit 3890530
3 files changed
Lines changed: 130 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
154 | 154 | | |
155 | 155 | | |
156 | 156 | | |
| 157 | + | |
157 | 158 | | |
158 | 159 | | |
159 | 160 | | |
| |||
Lines changed: 119 additions & 0 deletions
| 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 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
486 | 486 | | |
487 | 487 | | |
488 | 488 | | |
| 489 | + | |
| 490 | + | |
| 491 | + | |
| 492 | + | |
| 493 | + | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
489 | 499 | | |
490 | 500 | | |
491 | 501 | | |
| |||
0 commit comments