REVIEW 4 minor 31 references
Exact ratio preservation via outliers for fair $k$-center clustering
T0 review · 0 major / 4 minor · reviewed 2026-07-11 · grok-4.5
Pith's one-line read Fair k-center can match exact group ratios on messy data by discarding a few majority outliers, with constant-factor guarantees.
desk verdict Clean combinatorial fix for exact-ratio fair k-center when the input ratios are ugly; solid 4-approx for the practical 1:t cases, code shipped. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
Fairlet decomposition with anchors restricted to the minority class (Algorithms 3-5 inside the framework of Algorithm 1). The fairlets realize the exact target ratio while covering the minority class completely; farthest-first traversal on the anchors then produces the final centers, and the triangle inequality bounds the total radius by the sum of fairlet cost and anchor clustering cost.
What would settle it
Construct a two-color instance whose unique low-cost 1:1 solution must discard at least one minority point; if every algorithm that never discards minority points returns a radius more than four times the true optimum, the claimed guarantee fails.
Extended reading notes
Core claim
By allowing a prescribed number of majority-class outliers, every target integer ratio becomes feasible, and the classic fairlet-plus-k-center pipeline continues to give constant-factor center-aware approximations: 4 for one-sided ratios that begin with 1, and 14 for arbitrary t1:...:tm.
Load-bearing premise
Outliers may never be taken from the minority color class; the number of outliers is completely determined by the target ratio and the size of that minority class.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies fair k-center clustering under exact demographic ratio constraints when the input point set does not already realize those ratios. It introduces a one-sided-outlier model that discards the minimal number of majority-class points so that the remaining set admits a t1:t2:...:tm-fairlet decomposition, then clusters the anchors of those fairlets. Algorithm 1 combined with the flow-based fairlet routines (Algorithms 3–5) yields a center-aware 4-approximation for the 1:t and 1:t2:...:tm cases (Theorems 2.2, 2.3) and a 14-approximation for arbitrary integer ratios (Theorem 3.1); a separate two-sided-outlier variant for the balanced two-color case gives an 11-approximation (Theorem 3.2). The analysis rests on standard triangle-inequality and max-flow arguments (Appendices A–D). Experiments on four UCI-style data sets compare the informed-outlier approach against random majority-class discarding and confirm lower clustering cost.
Significance. The work supplies the first combinatorial constant-factor approximations that enforce exact target ratios on arbitrary inputs by a controlled use of outliers. Because the algorithms reduce to classical max-flow and Gonzalez farthest-first traversal, they are practical and come with publicly released code. The automatic ratio-rounding rule (t1=1, ti=floor(|Hi|/|H1|)) makes the method immediately applicable to real demographic data without manual parameter tuning. These contributions fill a clear gap between the exact-representation literature (which requires the input already to be balanced) and the LP-based approximate-representation literature (which sacrifices exactness).
minor comments (4)
- Section 3.1 and Figure 6: the 8-approximation lower-bound construction for the inlier-center variant is clear, yet a short remark that the same construction does not apply when anchors are restricted to the minority class would help readers appreciate why the design choice is essential.
- Appendix D.1 (two-sided outliers): the non-center-aware 11-approximation is stated cleanly, but the subsequent center-aware 14-approximation is only sketched in Observation D.14; expanding the argument by a few lines would make the appendix self-contained.
- Tables 3–8 (Appendix H): the raw input-to-ideal ratio lists are useful, yet a one-sentence summary of the typical number of discarded outliers per data set would make the experimental section easier to parse without consulting the appendix.
- Figure 4: the caption claims a matching lower bound for the 4-approximation; adding the concrete distances used in the construction would let readers verify the tightness claim without reconstructing the figure.
Circularity Check
No circularity: combinatorial approximation proofs via fairlets, max-flow and farthest-first traversal are self-contained and do not reduce to fitted inputs or self-referential definitions.
full rationale
The paper's central claims (Theorems 2.2, 2.3, 3.1, 3.2) are constant-factor approximation guarantees for fair k-center with outliers. These rest on (i) existence of a fairlet decomposition that agrees with an optimal fair clustering (Lemmas B.2, D.1), (ii) construction of such a decomposition by max-flow / matching / capacitated multi-center (Algorithms 3–5, with cost bounds 2 OPT or 12 OPT via triangle inequality), and (iii) the framework cost bound φ + ρ of Lemma 2.1 together with Gonzalez's 2-approximation on the anchors (Lemma A.1). All steps are proved from first principles inside the paper (or by standard black-box citations to Gonzalez, Hall, Khuller–Sussmann, Charikar et al.). The experimental ratios are obtained deterministically by t_i = floor(|H_i|/|H_1|); no parameters are fitted to data and then re-used as predictions. Self-citations to prior fair-clustering work by overlapping authors supply only the exact-representation baseline that is being extended; they are not load-bearing for the new outlier analysis. Consequently the derivation chain contains no self-definitional loop, no fitted-input-as-prediction, and no uniqueness/ansatz smuggled via self-citation.
Assumptions & free parameters
assumptions (4)
- standard math Distances form a metric (triangle inequality).
- standard math A maximum integral flow of value t|R| exists in the threshold graph whenever a fairlet decomposition of cost au OPT exists.
- domain assumption Outliers are taken only from non-minority color classes so that the minority class is fully covered by fairlets.
- domain assumption Target integers t_i satisfy gcd=1 and t_i |H1| ≤ t1 |Hi| (with |H1|/t1 integer in the general case).
invented entities (1)
-
one-sided-outlier fairlet decomposition
Cite this review
Pith. "Pith review of Exact ratio preservation via outliers for fair $k$-center clustering." pith.science (2026). https://pith.science/paper/MAI4WO65
@misc{pith2026260705342,
author = {Pith},
title = {Pith review of: Exact ratio preservation via outliers for fair $k$-center clustering},
year = {2026},
howpublished = {\url{https://pith.science/paper/MAI4WO65}},
note = {Machine review of arXiv:2607.05342}
}
abstract
We study the $k$-center clustering problem under demographic fairness constraints, where the point set is partitioned into groups, and the aim is to compute clusters that exhibit a given group proportion. Previous work in this direction assumes that the entire point set already respects the desired proportions or uses relaxed notions of fairness. In this work, we propose a model that facilitates the creation of clusters that exactly match given target ratios, even when the input point set does not. We combine the well-known fair clustering model initiated by Chierichetti, Kumar, Lattanzi, and Vassilvitskii (NeurIPS 2017) with the notion of outliers to obtain a practical combinatorial framework that provides constant-factor approximate solutions for all proportion settings from $1:1$ for two groups to $t_1:t_2:\ldots:t_m$ for $m\geq 2$ groups, where $t_1,\ldots,t_m$ are integers. We implement and evaluate our algorithms, compare different variants, and provide evidence of the practicability of this approach.
Reference graph
Works this paper leans on
-
[1]
Fair Clustering Through Fairlets , booktitle =
Flavio Chierichetti and Ravi Kumar and Silvio Lattanzi and Sergei Vassilvitskii , editor =. Fair Clustering Through Fairlets , booktitle =. 2017 , url =
2017
-
[2]
John E. Hopcroft and Richard M. Karp , title =. 1973 , url =. doi:10.1137/0202019 , timestamp =
doi:10.1137/0202019 1973
-
[3]
Fair Clustering with Multiple Colors , journal =
Matteo B. Fair Clustering with Multiple Colors , journal =. 2020 , url =. 2002.07892 , timestamp =
arXiv 2020
-
[4]
Algorithms for fair \(k\)-clustering with multiple protected attributes , journal =
Matteo B. Algorithms for fair \(k\)-clustering with multiple protected attributes , journal =. 2021 , url =. doi:10.1016/J.ORL.2021.08.011 , timestamp =
-
[5]
Advances in Neural Information Processing Systems 33: Annual Conference on Neural Information Processing Systems 2020, NeurIPS 2020, December 6-12, 2020, virtual , year =
Elfarouk Harb and Ho Shan Lam , editor =. Advances in Neural Information Processing Systems 33: Annual Conference on Neural Information Processing Systems 2020, NeurIPS 2020, December 6-12, 2020, virtual , year =
2020
-
[6]
Fair Coresets and Streaming Algorithms for Fair \(k\)-means , booktitle =
Melanie Schmidt and Chris Schwiegelshohn and Christian Sohler , editor =. Fair Coresets and Streaming Algorithms for Fair \(k\)-means , booktitle =. 2019 , url =. doi:10.1007/978-3-030-39479-0\_16 , timestamp =
-
[7]
Coresets for Clustering with Fairness Constraints , booktitle =
Lingxiao Huang and Shaofeng H. Coresets for Clustering with Fairness Constraints , booktitle =. 2019 , url =
2019
-
[8]
Clustering without Over-Representation , booktitle =
Sara Ahmadian and Alessandro Epasto and Ravi Kumar and Mohammad Mahdian , editor =. Clustering without Over-Representation , booktitle =. 2019 , url =. doi:10.1145/3292500.3330987 , timestamp =
Show all 31 references
-
[9]
A Technique for Obtaining True Approximations for \(k\)-Center with Covering Constraints , booktitle =
Georg Anegg and Haris Angelidakis and Adam Kurpisz and Rico Zenklusen , editor =. A Technique for Obtaining True Approximations for \(k\)-Center with Covering Constraints , booktitle =. 2020 , url =. doi:10.1007/978-3-030-45771-6\_5 , timestamp =
2020 doi
-
[10]
Xinrui Jia and Kshiteej Sheth and Ola Svensson , title =. Math. Program. , volume =. 2022 , url =. doi:10.1007/S10107-021-01674-7 , timestamp =
2022 doi
-
[11]
Privacy Preserving Clustering with Constraints , booktitle =
Clemens R. Privacy Preserving Clustering with Constraints , booktitle =. 2018 , url =. doi:10.4230/LIPICS.ICALP.2018.96 , timestamp =
2018 doi
-
[12]
On the Cost of Essentially Fair Clusterings , booktitle =
Ioana Oriana Bercea and Martin Gro. On the Cost of Essentially Fair Clusterings , booktitle =. 2019 , url =. doi:10.4230/LIPICS.APPROX-RANDOM.2019.18 , timestamp =
2019 doi
-
[13]
Fair Algorithms for Clustering , booktitle =
Suman Kalyan Bera and Deeparnab Chakrabarty and Nicolas Flores and Maryam Negahbani , editor =. Fair Algorithms for Clustering , booktitle =. 2019 , url =
2019
-
[14]
Fair \(k\)-center Clustering with Outliers , booktitle =
Daichi Amagata , editor =. Fair \(k\)-center Clustering with Outliers , booktitle =. 2024 , url =
2024
-
[15]
\(k\)-Clustering with Fair Outliers , booktitle =
Matteo Almanza and Alessandro Epasto and Alessandro Panconesi and Giuseppe Re , editor =. \(k\)-Clustering with Fair Outliers , booktitle =. 2022 , url =. doi:10.1145/3488560.3498485 , timestamp =
2022 doi
-
[16]
Guarantees for Spectral Clustering with Fairness Constraints , booktitle =
Matth. Guarantees for Spectral Clustering with Fairness Constraints , booktitle =. 2019 , url =
2019
-
[17]
Fair Clustering via Alignment , booktitle =
Kunwoong Kim and Jihu Lee and Sangchul Park and Yongdai Kim , editor =. Fair Clustering via Alignment , booktitle =. 2025 , url =
2025
-
[18]
Giraldo and Pierre Pinson and Nikolaos G
Georgios Tsaousoglou and Juan S. Giraldo and Pierre Pinson and Nikolaos G. Paterakis , title =. 2023 , url =. doi:10.1109/TITS.2023.3311509 , timestamp =
2023 doi
-
[19]
Procaccia and Isaac Robinson and Jamie Tucker
Ariel D. Procaccia and Isaac Robinson and Jamie Tucker. School Redistricting: Wiping Unfairness Off the Map , booktitle =. 2024 , url =. doi:10.1137/1.9781611977912.97 , timestamp =
2024 doi
-
[20]
Sussmann , title =
Samir Khuller and Yoram J. Sussmann , title =. 2000 , url =. doi:10.1137/S0895480197329776 , timestamp =
2000 doi
-
[21]
Mount and Giri Narasimhan , editor =
Moses Charikar and Samir Khuller and David M. Mount and Giri Narasimhan , editor =. Algorithms for facility location problems with outliers , booktitle =. 2001 , url =
2001
-
[22]
2020 , url =
Deeparnab Chakrabarty and Prachi Goyal and Ravishankar Krishnaswamy , title =. 2020 , url =. doi:10.1145/3392720 , timestamp =
2020 doi
-
[23]
Gonzalez , title =
Teofilo F. Gonzalez , title =. Theor. Comput. Sci. , volume =. 1985 , url =. doi:10.1016/0304-3975(85)90224-5 , timestamp =
1985 doi
-
[24]
Orlin , editor =
James B. Orlin , editor =. Max flows in \(O(nm)\) time, or better , booktitle =. 2013 , url =. doi:10.1145/2488608.2488705 , timestamp =
2013 doi
-
[25]
Liu and Maximilian Probst Gutenberg and Sushant Sachdeva and Aaron Sidford , title =
Jan van den Brand and Li Chen and Richard Peng and Rasmus Kyng and Yang P. Liu and Maximilian Probst Gutenberg and Sushant Sachdeva and Aaron Sidford , title =. 64th. 2023 , url =. doi:10.1109/FOCS57990.2023.00037 , timestamp =
2023 doi
-
[26]
Journal of the London Mathematical Society , volume =
Hall, Philip , title =. Journal of the London Mathematical Society , volume =. doi:https://doi.org/10.1112/jlms/s1-10.37.26 , url =. https://londmathsoc.onlinelibrary.wiley.com/doi/pdf/10.1112/jlms/s1-10.37.26 , year =
-
[27]
Coresets for Constrained Clustering: General Assignment Constraints and Improved Size Bounds , booktitle =
Lingxiao Huang and Jian Li and Pinyan Lu and Xuan Wu , editor =. Coresets for Constrained Clustering: General Assignment Constraints and Improved Size Bounds , booktitle =. 2025 , url =. doi:10.1137/1.9781611978322.161 , timestamp =
2025 doi
-
[28]
Advances in Neural Information Processing Systems , volume=
Retiring Adult: New Datasets for Fair Machine Learning , author=. Advances in Neural Information Processing Systems , volume=
-
[29]
and Rita,P
Moro,S. and Rita,P. and Cortez,P. , title =. 2012 , howpublished =
2012
-
[30]
1996 , howpublished =
Becker,Barry and Kohavi,Ronny , title =. 1996 , howpublished =
1996
-
[31]
2014 , howpublished =
Clore,John and Cios,Krzysztof and DeShazo,Jon and Strack,Beata , title =. 2014 , howpublished =
2014
Reviewed July 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.