def
definition
def or abbrev
nextClosure
show as:
view Lean formalization →
formal statement (Lean)
136def nextClosure (Z : ℕ) : ℕ :=
proof body
Definition body.
137 if Z ≤ 2 then 2
138 else if Z ≤ 10 then 10
139 else if Z ≤ 18 then 18
140 else if Z ≤ 36 then 36
141 else if Z ≤ 54 then 54
142 else if Z ≤ 86 then 86
143 else 118 -- Oganesson
144
145/-- Distance to next noble gas closure.
146 At noble gases, this equals 0 (shell complete). -/
used by (21)
-
li_larger_than_f -
lower_z_more_remaining -
na_larger_than_cl -
normalizedRadius -
ea_decreases_within_period -
halogen_max_ea -
carbon_intermediate -
cesium_low_en -
chlorine_gt_sodium -
fluorine_gt_b -
fluorine_gt_be -
fluorine_gt_c -
fluorine_gt_li -
fluorine_gt_n -
fluorine_gt_o -
fluorine_ranking -
nitrogen_ranking -
oxygen_ranking -
alkali_halogen_ionic -
distToNextClosure -
periodLength