def
definition
def or abbrev
cube_faces
show as:
view Lean formalization →
formal statement (Lean)
69def cube_faces (D : ℕ) : ℕ :=
proof body
Definition body.
70 match D with
71 | 0 => 0
72 | 1 => 0
73 | 2 => 4 -- square has 4 edges (faces in 2D)
74 | 3 => 6 -- cube has 6 faces
75 | n+4 => (n+4) * (n+3) * 2^(n+2)
76
used by (40)
-
alpha_ingredients_from_D3_cube -
cube_faces -
faces_at_D3 -
face_solid_angle_sum -
per_face_solid_angle -
per_face_solid_angle_eq -
seam_denominator -
alphaFramework -
AlphaFrameworkCert -
cube_faces -
Q3_faces -
generation_ordering_general -
total_geometric_content -
W_endo -
lepton_integer_slot_iff_bundle_no_hk -
o4_channel_closure_certificate -
o4_slot_forcing_certificate -
step_mu_tau_channel_split -
step_mu_tau_coeff_forced_from_six_face_term -
step_mu_tau_coeff_iff_full_forced_under_dim_bound -
step_mu_tau_coeff_iff_kn_under_dim_bound -
step_mu_tau_coeff_iff_kn_under_dim_bound_no_hk -
step_mu_tau_denominator_forced -
step_mu_tau_denominator_iff_numerator_under_dim_bound -
step_mu_tau_denominator_iff_numerator_under_dim_bound_no_hk -
step_mu_tau_face_count_forced -
step_mu_tau_face_term_forced -
step_mu_tau_full_affine_forced_from_face_term -
step_mu_tau_full_family_coeff_iff_under_dim_bound -
step_mu_tau_full_family_coeff_iff_under_dim_bound_no_hk