rat-row-scale-inverse-1
- Kind
- kernel-term
- Status
- checked
Supports: `Rat.rowScale_inverse` is a checked `Declaration::Theorem` with an EMPTY `Kernel::axiom_footprint` in all four preludes carrying the rationals. The `formal.statement` is the kernel's `render_lean` of the admitted type; reading it confirms the side condition is the negation `((x3 : Eq Rat x1 Rat.zero) -> False)` rather than a positivity hypothesis, and that the outer scaling factor is literally `Rat.inv x1` rather than an unrelated second scalar.
out=$(target/release/examples/kernel_declaration_projection --require-declaration Rat.rowScale_inverse --require-kind theorem 2>&1) && test "$(printf "%s\n" "$out" | grep -cE 'found[[:space:]]+(rat|creal|complex|cpoint)[[:space:]]+theorem[[:space:]]+Rat\.rowScale_inverse[[:space:]]+0$')" = 4 Evidence notes
Run 2026-09-02: prints four `found ... theorem Rat.rowScale_inverse 0` rows (rat, creal, complex, cpoint) and exits 0. The checker COUNTS those rows and requires exactly 4, so a deletion, a rename, a demotion to a `Definition`, a nonzero axiom footprint, or the declaration failing to survive into a downstream prelude each make the count differ and the command exit 1. `scripts/new-fact.py` verified the pattern fails on mutated output before this file was written.