Commit a43a669
PF/TransferOperator: eliminate LogWeightedL2.inner axiom — canonical 8 → 7
Replace `axiom LogWeightedL2.inner : LogWeightedL2 → LogWeightedL2 → ℂ`
with a real `noncomputable def` against the log-weighted Bochner integral:
noncomputable def LogWeightedL2.inner (f g : LogWeightedL2) : ℂ :=
∫ x in Set.Ioo (0:ℝ) 1,
(starRingEnd ℂ) (f.toFunℝ x) * g.toFunℝ x
∂logWeightedMeasure
where `LogWeightedL2.toFunℝ` extends the structure's `toFun : Icc 0 1 → ℂ`
to `ℝ → ℂ` by zero outside the unit interval (so the Bochner integrand
is a well-typed `ℝ → ℂ` function).
**The canonical Lean PF/ axiom count drops from 8 to 7** for the first
time since Phase A began. Eliminated axiom: `LogWeightedL2.inner`.
Refactor scope:
* `PF/TransferOperator.lean`:
- Add imports: `Mathlib.MeasureTheory.Measure.WithDensity`,
`Mathlib.MeasureTheory.Measure.Lebesgue.Basic`,
`Mathlib.MeasureTheory.Integral.Bochner`.
- MOVE `logWeightDensity`, `logWeightedMeasure`,
`logWeightedMeasure_def`, `logWeightDensity_ne_top`, and the
`SigmaFinite logWeightedMeasure` instance from
`PF/LogWeightedIntegral.lean` to `PF/TransferOperator.lean`
(so they are defined upstream of the `inner` definition).
- Add `LogWeightedL2.toFunℝ` (extension to ℝ → ℂ by zero).
- Replace `axiom LogWeightedL2.inner` with `noncomputable def`.
* `PF/LogWeightedIntegral.lean`:
- REMOVE the duplicated definitions (now imported via TransferOperator).
- All downstream theorems unchanged — they reference the same
`logWeightedMeasure`, just defined upstream now.
The `def` is non-vacuous: for integrable inputs, returns the true
`∫ conj(f) · g dx/x` value; for non-integrable, returns 0 by Bochner
convention. This honors the rigor mandate (no placeholder = 0;
the function returns the actual integral whenever defined).
Self-adjointness theorems in PF/TransferOperator.lean still use
hypothesis-style `hsmul_left`/`hsmul_right`/`hpos_def` for
sesquilinearity + positive-definiteness; converting these to free
theorems (provable from the new `def`) is a follow-on refactor
not required for the axiom retirement.
Today's full chain (15 commits, all clean throughout, ending at this one):
0e87907 → 49ff3ba → aef881c → 712ee4e → 0e5e4b9 → e36f76a (audit) →
98b1f7e → 869b6f7 → 25e00eb → 8aac4c4 → e989098 → 483b388 → d448a7e →
de5d131 → 2682b04 (audit) → THIS commit (axiom elimination).
Build clean (5488 jobs); axiom count 7 (CANONICAL DOWN ONE); sorries 0.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 2682b04 commit a43a669
2 files changed
Lines changed: 62 additions & 38 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
35 | | - | |
36 | | - | |
37 | | - | |
38 | | - | |
39 | | - | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
| 34 | + | |
52 | 35 | | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | | - | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | | - | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
64 | 41 | | |
65 | 42 | | |
66 | 43 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
28 | 31 | | |
29 | 32 | | |
30 | 33 | | |
| |||
59 | 62 | | |
60 | 63 | | |
61 | 64 | | |
62 | | - | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | | - | |
68 | | - | |
69 | | - | |
70 | | - | |
| 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 | + | |
71 | 118 | | |
72 | 119 | | |
73 | 120 | | |
| |||
0 commit comments