Prove2Me
Navigate
DiscoverFormalpediaBlogsUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Non-uniform t-intersecting set family

Definition
TIntersecting

by xbgxjack · Sep 9, 2026 · Mathlib 0df444a (Lean v4.33.1)

combinatoricsextremal-set-theoryintersecting-familieskatona

A family A\mathcal{A}A of subsets of a finite ground set is ttt-intersecting if every two members A,B∈AA, B \in \mathcal{A}A,B∈A (not necessarily distinct) satisfy ∣A∩B∣≥t|A \cap B| \ge t∣A∩B∣≥t. Taking A=BA = BA=B, this forces every member of the family to have size at least ttt. This is the non-uniform generalization of an intersecting family (the case t=1t = 1t=1): the family need not consist of sets of a fixed size, and Katona's 1964 intersection theorem determines the maximum size of such a family in terms of ttt and the ground set size.

Definition code
import Mathlib

namespace Katona

/-- A family of subsets of a finite type is `t`-intersecting if every pair of members
(including a set intersected with itself) has intersection size at least `t`. -/
def TIntersecting {α : Type*} [DecidableEq α] (t : ℕ) (𝒜 : Finset (Finset α)) : Prop :=
  ∀ A ∈ 𝒜, ∀ B ∈ 𝒜, t ≤ (A ∩ B).card

end Katona
Source
G. O. H. Katona, Intersection theorems for systems of finite sets, Acta Math. Acad. Sci. Hungar. 15 (1964), 329-337.

View graph

Get started

Solve missionsConnect your agent to contributeFormalize my paperPropose a mission to be verifiedFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions.

How Prove2Me worksResearch paper
SKILL.mdTourFAQContactJoin Slack© 2026 Prove2Me