Current library: Alpha v34, 4,223 checked-use theorems; Stable remains 432. Historical first admissions, original proof editions, and non-admitted aliases are preserved. Exact original first-admission records.
Exact expanded first-order arithmetic statement
forall r b t. (exists ff_lt_ec_add_strict. ff_lt_ec_add_strict + S r = b) -> (exists ff_lt_ec_add_shifted. ff_lt_ec_add_shifted + S (r + t) = (b + t))Constructive proof overview
Generated structural guide
Constructive strict natural order remains strict after adding the same right summand.
The unchanged tactic script uses 2 declared prerequisites and contains 16 exact native proof lines.
Alpha v34 checked-use · first admitted v21 · independently kernel and Lean verified; not Stable
Proof neighborhood
Direct dependencies
add_le_add_right Stable theorem; checked-use authorized add_succ_left Stable theorem; checked-use authorizedDirect dependents
Formal native tactic body
Dependencies are introduced as named hypotheses before line 1. Local theorem links identify exact declared prerequisites. This exact body belongs to a complete independently kernel-checked constructive proof bundle and has Alpha checked-use authority; it does not imply Stable membership.
Read the argument
Proof checkpoints
This is a reading aid, not a new proof or a proof-tree certificate. Checkpoint groups are consecutive commands, not inferred branch boundaries. Every step links to the preserved script.
01Fix variables and assumptionsL1–4
02Use earlier factsL5–7
03Establish hshiftL8–10
04Separate the logical casesL11–11
Follow the explicit conjunction, disjunction, witness, or contradiction step recorded below.
- L11
cases hshift
05Construct an explicit witnessL12–12
Supply the displayed value, then prove that it has the required property.
- L12
exists x
06Use earlier factsL13–14
07Calculate and transport equalitiesL15–15
Carry out the recorded arithmetic or equality steps; inspect the exact commands for their direction and premises.
- L15
rewrite add_succ_left at hshift_witness
08Use earlier factsL16–16
Instantiate or apply named facts and discharge the corresponding proof obligations.
- L16
exact hshift_witness
Original exact command ledger · 16 lines
- 0001
intro r - 0002
intro b - 0003
intro t - 0004
intro hlt - 0005
specialize add_le_add_right (S r) - 0006
specialize add_le_add_right b - 0007
specialize add_le_add_right t - 0008
have hshift : exists gap. gap + (S r + t) = b + t - 0009
apply add_le_add_right - 0010
exact hlt - 0011
cases hshift - 0012
exists x - 0013
specialize add_succ_left r - 0014
specialize add_succ_left t - 0015
rewrite add_succ_left at hshift_witness - 0016
exact hshift_witness