Pith. sign in

REVIEW 3 major objections 5 minor 1 cited by

A Matrix Factorization Approach in Turnstile Streaming

T0 review · 3 major / 5 minor · reviewed 2026-08-03 · deepseek-v4-flash

Pith's one-line read A matrix-factorization theorem pins down the memory needed for turnstile quantile sketches.

desk verdict The factorization framework is real and the new CountSketch correlation bound checks out; the main risk is independent verification of the Section 6 lower bound, which is dense and AI-generated but coherent on close reading. read the letter →

arxiv 2607.28819 v1 pith:R3QF7MBX submitted 2026-07-30 cs.DS

classification cs.DS
keywords turnstilestreamingM-pointqueryquantilesCountSketchmatrixfactorizationdyadicdecompositionlowerboundsoperatornorms
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper introduces the M-point query problem: maintain a vector x under insertions and deletions, and answer queries y_u = (Mx)_u within additive error ε||x||_1. It shows that any factorization M = AB yields a sketching algorithm whose memory depends on the norm product ||A||_{2→∞}||B||_{1→1}, using a median-of-five CountSketch applied to Bx. For the prefix-sum matrix Q, the dyadic factorization gives an O(ε^{-1} log^{3/2} U)-word algorithm, improving the previous best turnstile quantile bound. The matching lower bound shows that every factorization Q = AB has norm product Ω(log^{3/2} U / log log U), so the dyadic CountSketch is nearly optimal among factorization-based approaches. The result also connects streaming quantiles to the matrix mechanism used in differential privacy.

What carries the argument

The key machinery is the factorization M = AB combined with the operator norms ||·||_{2→∞}, ||·||_{1→1}, and ||·||_{∞→∞}. The upper bound runs a single five-row CountSketch on Bx and relies on a correlation bound for the median-of-five estimator: for distinct coordinates u and v, the product of their errors has expectation O(ε^3)||x||_1^2 when r = 1/ε. For quantiles, the dyadic decomposition of the prefix-sum matrix Q gives sparse A and B with norm product O(log^{3/2} U). The lower bound uses signed test functionals on dyadic intervals, measuring each dictionary row's imbalance between left and right halves; the 'fresh distance' D_I of each direction from coarser directions forces large row

What would settle it

Compute or approximate γ_{2,1}(Q) for a moderately sized U, say 2^12, by searching over factorizations; finding a factorization with ||A||_{2→∞}||B||_{1→1} = o(log^{3/2} U / log log U) would disprove Theorem 6.1. Alternatively, run a median-of-five CountSketch on a synthetic turnstile stream and measure the covariance E[err(u)err(v)]: it should decay as O(ε^3)||x||_1^2, and a slower decay would invalidate the upper-bound engine.

Watch

Extended reading notes

Core claim

Central claim: if M = AB, the M-point query problem can be solved by a median-of-five CountSketch of Bx, outputting A times the recovered vector. Memory is O(ε^{-1}||A||_{2→∞}||B||_{1→1} + (ε^{-1}||A||_{∞→∞}||B||_{1→1})^{2/3}) words, beyond the cost of storing A and B. The proof hinges on a new correlation bound: distinct coordinates' CountSketch errors have covariance O(ε^3)||x||_1^2, which makes row-by-row reconstruction cheap. For the prefix-sum matrix Q, the dyadic factorization gives an O(ε^{-1} log^{3/2} U)-word turnstile quantile algorithm; a new lower bound shows every Q = AB has ||A||_{2→∞}||B||_{1→1} = Ω(log^{3/2} U / log log U), so dyadic CountSketch is nearly optimal among factor

Load-bearing premise

The lower bound's load-bearing premise is Lemma 6.11: for almost every uniform row, the sum of the 'fresh distances' (the sizes of new directions not explained by coarser dyadic levels) along a root-to-leaf path is O(log L); if the martingale tail estimate or the layer-cake integration is loose, the Ω(L^{3/2}/log L) row-norm conclusion collapses.

Editorial extensions

If this is right

  • Any matrix with a sparse or tree-structured factorization gains a turnstile streaming algorithm for M-point queries, with memory polynomial in the factorization's norm product.
  • The turnstile quantile upper bound becomes O(ε^{-1} log^{3/2} U) words, improving the prior best by a polylog factor and using a single CountSketch across all dyadic levels.
  • Because every factorization of Q has norm product Ω(log^{3/2} U / log log U), further improvements to turnstile quantiles cannot come from within the factorization-based framework.
  • The same factorization norm governs the pure-DP matrix mechanism, so this lower bound shows that closing the DP gap cannot be achieved solely by finding a better factorization.
  • The logarithmic streaming lower bound separates turnstile quantiles from insertion-only quantiles: Ω(ε^{-1} log U) words versus O(ε^{-1}).

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The single-table CountSketch simplification suggests practical implementations could replace per-level sketches with one table, reducing implementation overhead beyond the theoretical space bound.
  • The ε^3 correlation bound is likely transferable to other settings where many point-query estimates are aggregated linearly, potentially improving analyses of other streaming primitives.
  • The factorization lower bound strengthens the suspicion that the remaining √log U gap between upper and unconditional lower bounds for turnstile quantiles is genuine; a tight lower bound would need to bypass factorizations entirely.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper introduces the M-point query problem in turnstile streams: maintain x under updates and answer queries u with an estimate of (Mx)_u within additive ε‖x‖₁. The main upper bound (Theorem 1.2) shows that if M = AB, then a median-of-5 CountSketch applied to z = Bx, followed by multiplication by A, gives the claimed error using O(max(‖A‖_{2→∞}‖B‖_{1→1}/ε, (‖A‖_{∞→∞}‖B‖_{1→1}/ε)^{2/3})) words. The key technical novelty is a correlation bound for the errors of two median-of-5 CountSketch point queries (Theorem 2.1 / Theorem A.1), showing the covariance is O(‖x‖₁²/r³), a factor 1/r stronger than the trivial Cauchy–Schwarz bound. When M is the prefix-sum matrix Q, the dyadic factorization gives an O(ε^{-1} log^{3/2} U)-word algorithm for turnstile approximate rank/quantile queries, improving prior analyses. The paper also proves an unconditional Ω(ε^{-1} log(εn) · log(εU/log(εn))) bit lower bound for turnstile quantiles (Section 5) and a structural lower bound γ_{2,1}(Q) = Ω(log^{1.5} U / log log U) (Section 6), showing that the dyadic CountSketch is near-optimal among all factorization-based approaches. Appendix A contains the full correlation analysis, including a derandomization via PRGs for intersections of halfspaces.

Significance. If the results hold, this is a substantial contribution. The correlation bound for median-of-5 CountSketch is a clean and potentially reusable structural result; it is proved with explicit constants (70/r³) and a detailed pseudorandom derandomization. The resulting factorization framework unifies and simplifies the existing dyadic turnstile quantile algorithms, and the γ_{2,1}(Q) lower bound is new and gives a formal sense in which the dyadic CountSketch is near-optimal among factorization-based methods. The paper also provides the first streaming lower bound of the form Ω(ε^{-1} log U) for turnstile quantiles in the word-RAM model, separating the fully dynamic model from insertion-only streams. The appendix includes a genuinely explicit derivation: the K = 0,1,2,≥3 case analysis is concrete, and the martingale/Bessel argument in Section 6 is a sophisticated and largely coherent proof strategy. However, the printed proof of a key lemma in Section 6 (Lemma 6.2) is garbled, and the Section 6 proof is acknowledged to have been AI-generated; these issues require careful correction before the lower bound can be considered fully verified.

major comments (3)
  1. [Section 6.2, Lemma 6.2] The proof of Lemma 6.2 as printed is not mathematically coherent. The chain "2N+1 - |G| = |G| = |D| + |G\D| ≤ |D| + |G|, from which |G| ≥ N + (1-|D|)/2" is self-contradictory: the first equality would imply |G| = 2N+1 - |G|, and the conclusion does not follow. A correct symmetric-pair argument gives a bound of the form |G| ≤ 9N/8 + O(1), i.e. at least 7N/8 - O(1) bad points, not exactly 7N/8. Since Lemma 6.5, and through it Lemma 6.8 and the positivity of D_I, depend on this lemma, the proof must be rewritten. The additive loss does not change the Ω(log^{3/2} U / log log U) conclusion, but the statement and proof need to be corrected and the constants made exact.
  2. [Theorem 1.2 / Section A.1, Lemma A.7] The stated seed length is not justified as written. In Lemma A.7 the PRG error must be set to γ = 2^{-20}/(5r³), so the seed length given by Theorem A.6 is O(log m + log²(1/γ)) = O(log m + log² r), where r = O(max(‖A‖_{2→∞}‖B‖_{1→1}/ε, (‖A‖_{∞→∞}‖B‖_{1→1}/ε)^{2/3})). The theorem statement claims a seed of only O(log m + log²(1/ε)) bits, which omits any dependence on the norms of A and B. For arbitrary A,B this literal statement is false when ‖A‖_{∞→∞}‖B‖_{1→1} is large. The issue is local — log² r is o(r) as r→∞, so the final O(·) word bound is unaffected — but the statement should be restated with r or with a bound on the norm product.
  3. [Section 5, proof of Theorem 5.1] The displayed inequality "(ε/10)n' < .11εn/11^i" is missing the factor K. From n' < 1.1Kn/11^i one obtains (ε/10)n' < 0.11 ε K n/11^i, which is < 0.11 ε n/11^i only if K < 1. The text says K is a sufficiently small constant, so this is fixable, but as written the chain is incorrect. In addition, the reduction parameters require conditions such as q = εU/log(εn) ≥ 2eρ and εn ≥ 1 for the code and the augmented-index construction to be well defined; the theorem statement should state the regime in which the claimed Ω(ε^{-1} log(εn) log(εU/log(εn))) bound applies.
minor comments (5)
  1. [Section 6.5] The reverse Markov calculation is misprinted: for X = |R(i)| ∈ [0,L] and a = L/10, the denominator should be L - L/10 = 9L/10, giving (L/5 - L/10)/(9L/10) = 1/9. The printed expression uses L - L/8 and obtains 4/35, which is actually a stronger bound, but the equality as written is wrong.
  2. [Section 6.2 and Section 6.4] There are several cross-reference errors: Lemma 6.5 says "Theorem 6.2" but should be "Lemma 6.2"; Lemma 6.11 invokes "Theorem 6.3" and "Theorem 6.7" where it means Lemma 6.3 and Corollary 6.7. The notation i is used both for a row of A and for a leaf index; this is formally consistent because both are indexed by [U], but it is confusing in Lemma 6.11 and should be clarified.
  3. [Section 4.2] The proof of Theorem 4.2 refers to "Theorem 4.1" but the factorization result is Lemma 4.1. Also, the line "where the final simplification holds for all ε ≤ 1" is slightly misleading because (log² U)^{2/3} = log^{4/3} U is dominated by log^{3/2} U only up to constants for ε ≤ 1; the intended inequality is fine but should be stated as O(max(...)) = O(log^{3/2} U/ε), not as an equality valid pointwise for all ε.
  4. [Section 5] The proof refers to "Theorem 5.5" and "Theorem 5.2" where it should refer to Corollary 5.5 and Lemma 5.2. These slips do not affect the argument but should be corrected.
  5. [Section 1.1, contribution (iii)] The contribution summary says "roughly Ω(ε^{-1} log(εn)) words" but Theorem 5.1 gives a more precise expression with an additional log(εU/log(εn)) factor. This is acceptable, but the summary should not suggest that the theorem is exactly Ω(ε^{-1} log(εn)) words; otherwise the reader may be surprised by the more complex statement.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the upper bound is a derived norm bound, the lower bound is an infimum over all factorizations, and self-citations are independent.

full rationale

The paper's central derivation is self-contained rather than circular. Theorem 1.2 chooses the CountSketch width r after computing the second-moment and correlation contributions in terms of the factorization norms; no parameter is fitted to force the target error bound. The quantile upper bound follows by plugging explicit, independently verifiable dyadic norm bounds (Lemma 4.1) into Theorem 1.2. The structural lower bound γ_{2,1}(Q) is an infimum over all factorizations Q=AB, so the dyadic upper bound cannot have been baked into its statement; its proof works from the Q=AB constraints via martingale concentration, fresh-direction orthogonality, Bessel's inequality, and layer-cake integration. The cited results used as ingredients are external published theorems (e.g., Osekowski's martingale inequality, the augmented-indexing lower bound, and PRGs for halfspace intersections), and although some references include the present authors, none is used as a substitute for a proof in this paper. The AI-acknowledgment passage discloses the provenance of the Section 6 proof and is a verification concern, not a circularity. No equation is defined in terms of the target result, and no fitted quantity is renamed as a prediction.

Assumptions & free parameters 0 free parameters · 5 assumptions · 0 invented entities

Everything the central claims rest on that the reader didn't pay for upstream. The paper uses four cited results as black boxes: the halfspace-intersection PRG (GOWZ10/GKM18/JW21), the augmented-indexing one-way lower bound (MNSW98/BJKK04), the Ose14 martingale weak-type inequality, and the LPT21 second-moment bound for CountSketch medians. The error-correcting code of Lemma 5.2 is proven in-paper by Chernoff + union bound. No free parameters: every constant (70 in Theorem A.1, r = Θ(1/ε), ε/10 in the reduction, ρ = 100, ℓ = K/ε, s = (1/2)log₁₀(εn), γ = 2^{-20}/(5r³)) is fixed by closed-form analysis. No invented entities: the 'fresh directions', 'tents', and 'dictionary rows' are proof devices, not new postulates.

assumptions (5)
  • standard math Existence of PRGs fooling intersections of a constant number of halfspaces with seed length O(log m + log²(1/γ)) [GOWZ10, GKM18, JW21]
    Theorem 2.2 and Lemma A.7 need this to derandomize the K=0 case of the correlation bound at seed cost O(log m + log²(1/ε)) bits; cited in Section A.1 as Theorem A.6.
  • standard math Martingale weak-type inequality E|M_T| ≥ (√v/e)·P[V ≥ v] [Ose14; also Bur66, Bur73, Bol80, Cox82]
    Corollary 6.7's tail bound on dictionary-row path variances, and hence Lemma 6.11's O(log L) fresh-distance bound in Sections 6.3-6.4, rest on it.
  • standard math One-way public-coin communication lower bound for AugmentedIndex: Ω(n) bits for failure probability < 1/3 [MNSW98, BJKK04]
    Theorems 5.4 and Corollary 5.5 are the hardness source for Theorem 5.1's Ω(ε^{-1}log U) turnstile lower bound.
  • standard math E[err²] = O(‖x‖₁²/r²) for median-of-≥3 CountSketch estimators [LPT21]
    Used in Theorem 1.2's variance term and in Lemma A.3's K=1/K=2 case bounds; cited to [LPT21].
  • domain assumption Word-RAM model with O(log U)-bit words; randomized algorithms with constant per-query failure; public-coin protocols for the communication reduction
    All space bounds are stated in words and all probability statements are per-query (Section 1, Definition 1.1); the reduction in Section 5 assumes public randomness.

how reviews work

0 comments
Cite this review

Pith. "Pith review of A Matrix Factorization Approach in Turnstile Streaming." pith.science (2026). https://pith.science/paper/R3QF7MBX

@misc{pith2026260728819,
  author       = {Pith},
  title        = {Pith review of: A Matrix Factorization Approach in Turnstile Streaming},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/R3QF7MBX}},
  note         = {Machine review of arXiv:2607.28819}
}
abstract

We define the $M$-point query problem in data streams. Given a fixed matrix $M$, the goal is to maintain a vector $x$ under turnstile updates and answer each query $u$ with an estimate $\widehat{y}_u$ satisfying $|y_u-\widehat{y}_u| \leq \varepsilon \|x\|_1$, where $y=Mx$. We show that if $M$ admits a factorization $M=AB$, where $A$ and $B$ have space-efficient representations, then there is a streaming algorithm using $O(\varepsilon^{-1}\|A\|_{2\rightarrow\infty}\|B\|_{1\rightarrow 1}+(\varepsilon^{-1}\|A\|_{\infty\rightarrow\infty}\|B\|_{1\rightarrow 1})^{2/3})$ words of memory. An important special case is the lower-triangular all-ones matrix, which corresponds to the quantiles problem with additive error $\pm \varepsilon n$, where $n$ is the database size. Our framework generalizes the dyadic approach of Cormode and Muthukrishnan (J. Algorithms, 2005) for turnstile quantiles, and simplifies and improves the analysis of the state-of-the-art dyadic CountSketch algorithms of Wang et al. (SIGMOD, 2013) and Luo et al. (VLDB, 2016). Our approach is also related to the matrix mechanism of Li et al. (VLDB J., 2015) in differential privacy: given a database $x\in\mathbb{R}^U$ and a matrix $M$, the mechanism outputs a private approximation to $Mx$, with the privacy-error tradeoff governed by a matrix factorization norm of $M$. We also improve the prior lower bound for quantiles with deletions, showing a memory lower bound of $\Omega(\varepsilon^{-1}\log U)$ words. We also show any factorization has $\|A\|_{2\rightarrow\infty}\|B\|_{1\rightarrow 1} = \Omega((\log^{1.5} U) / \log\log U)$. This lower bound is new, and shows that for quantiles, the dyadic CountSketch is nearly optimal amongst factorization-based approaches.

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. A Near-Optimal Lower Bound for Prefix-Matrix Factorizations

    cs.DS 2026-08 conditional novelty 3.0 of 10

    Any real factorization Q=AB of the lower-triangular all-ones prefix matrix has ∥A∥_{2→∞}∥B∥_{1→1} ≥ c log^{3/2} n/(log log n)^{3/2}.

Reference graph

Works this paper leans on

54 extracted references · 2 linked inside Pith · cited by 1 Pith paper

  1. [1]

    Cox , journal =

    David C. Cox , journal =. The Best Constant in Burkholder's Weak-

  2. [2]

    Martingale inequalities , author =

  3. [3]

    Statistics & Probability Letters , year = 2014, pages =

    A weak-type inequality for the martingale square function , author =. Statistics & Probability Letters , year = 2014, pages =

  4. [4]

    Distribution function inequalities for martingales , author =

  5. [5]

    Martingale Transforms , author =

  6. [6]

    Zhang, Junyi and He, Xinjie and Chae, Hyunsik and Ji, Ethan and Jiang, Eric and Raghavan, Rushil and Kou, Yiwen and Taylor, Alex and Chang, Kai-Wei and Meka, Raghu and Peng, Violet and Sahai, Amit and Tao, Terence and Wang, Wei , year =

  7. [7]

    2026 , volume=

    The Binary Tree Mechanism is Optimal for Approximate Differentially Private Continual Counting , author=. 2026 , volume=

  8. [8]

    High-Dimensional Probability: An Introduction with Applications in Data Science , publisher=

    Vershynin, Roman , year=. High-Dimensional Probability: An Introduction with Applications in Data Science , publisher=

Show all 54 references
  1. [9]

    International Mathematics Research Notices , volume =

    Matoušek, Jiří and Nikolov, Aleksandar and Talwar, Kunal , title =. International Mathematics Research Notices , volume =. 2020 , abstract =. doi:10.1093/imrn/rny033 , url =

  2. [10]

    Hubert Chan and Elaine Shi and Dawn Song , title =

    T.-H. Hubert Chan and Elaine Shi and Dawn Song , title =

  3. [11]

    Smith , title =

    Cynthia Dwork and Frank McSherry and Kobbi Nissim and Adam D. Smith , title =. J. Priv. Confidentiality , volume =

  4. [12]

    Kelner and Frederic Koehler and Raghu Meka and Dhruv Rohatgi , title =

    Jonathan A. Kelner and Frederic Koehler and Raghu Meka and Dhruv Rohatgi , title =. FOCS , pages =

  5. [13]

    ICML , pages =

    Kasper Green Larsen and Rasmus Pagh and Jakub Tetek , title =. ICML , pages =

  6. [14]

    Nguyen and David P

    Jelani Nelson and Huy L. Nguyen and David P. Woodruff , title =

  7. [15]

    Woodruff , title =

    Rajesh Jayaram and David P. Woodruff , title =

  8. [16]

    TODS , volume =

    Ahmed Metwally and Divyakant Agrawal and Amr El Abbadi , title =. TODS , volume =

  9. [17]

    Strauss , title =

    Radu Berinde and Piotr Indyk and Graham Cormode and Martin J. Strauss , title =. TODS , volume =

  10. [18]

    Jayadev Misra and David Gries , title =. Sci. Comput. Program. , volume =

  11. [19]

    CoRR , volume =

    Ohad Shamir , title =. CoRR , volume =. 2011 , url =. 1110.2392 , timestamp =

  12. [20]

    Minton and Eric Price , title =

    Gregory T. Minton and Eric Price , title =. SODA , pages =

  13. [21]

    SODA , pages =

    Elena Gribelyuk and Pachara Sawettamalya and Hongxun Wu and Huacheng Yu , title =. SODA , pages =

  14. [22]

    CCC , pages =

    Parikshit Gopalan and Ryan O'Donnell and Yi Wu and David Zuckerman , title =. CCC , pages =

  15. [23]

    SODA , pages =

    Yichuan Wang , title =. SODA , pages =

  16. [24]

    Chao Li and Gerome Miklau and Michael Hay and Andrew McGregor and Vibhor Rastogi , title =

  17. [25]

    SIGMOD , pages =

    Elena Gribelyuk and Pachara Sawettamalya and Hongxun Wu and Huacheng Yu , title =. SIGMOD , pages =

  18. [26]

    FOCS , pages =

    Meghal Gupta and Mihir Singhal and Hongxun Wu , title =. FOCS , pages =

  19. [27]

    A Tight Lower Bound for Comparison-Based Quantile Summaries , booktitle =

    Graham Cormode and Pavel Vesel. A Tight Lower Bound for Comparison-Based Quantile Summaries , booktitle =

  20. [28]

    Fredman , title =

    Michael L. Fredman , title =. J

  21. [29]

    Chen and Martin Farach

    Moses Charikar and Kevin C. Chen and Martin Farach. Finding frequent items in data streams , journal =

  22. [30]

    Muthukrishnan , title =

    Graham Cormode and S. Muthukrishnan , title =. PODS , pages =

  23. [31]

    PDP , pages =

    Gil Einziger and Roy Friedman , title =. PDP , pages =

  24. [32]

    KDD , pages =

    Daniel Ting and Jonathan Malkin and Lee Rhodes , title =. KDD , pages =

  25. [33]

    Google Cloud , title =

  26. [34]

    Apache Spark , title =

  27. [35]

    Smith , title =

    Palak Jain and Sofya Raskhodnikova and Satchit Sivakumar and Adam D. Smith , title =

  28. [36]

    ICML , pages =

    Hendrik Fichtenberger and Monika Henzinger and Jalaj Upadhyay , title =. ICML , pages =

  29. [37]

    Ge Luo and Lu Wang and Ke Yi and Graham Cormode , title =

  30. [38]

    Muthukrishnan , title =

    Graham Cormode and S. Muthukrishnan , title =. J. Algorithms , volume =

  31. [39]

    T. S. Jayram and David P. Woodruff , title =

  32. [40]

    ISIT , year =

    Tom Morgan and Jelani Nelson , title =. ISIT , year =

  33. [41]

    The Sketching Complexity of Pattern Matching , booktitle =

    Ziv Bar. The Sketching Complexity of Pattern Matching , booktitle =

  34. [42]

    JCSS , volume =

    Peter Bro Miltersen and Noam Nisan and Shmuel Safra and Avi Wigderson , title =. JCSS , volume =

  35. [43]

    Jelani Nelson , title =

  36. [44]

    Karnin and Kevin J

    Zohar S. Karnin and Kevin J. Lang and Edo Liberty , title =. FOCS , pages =

  37. [45]

    Michael Greenwald and Sanjeev Khanna , title =

  38. [46]

    FOCS , pages=

    Optimal quantile approximation in streams , author=. FOCS , pages=

  39. [47]

    Kane and Raghu Meka , title =

    Parikshit Gopalan and Daniel M. Kane and Raghu Meka , title =. SICOMP , volume =

  40. [48]

    VLDB , volume=

    Kll approximate quantile sketches over dynamic datasets , author=. VLDB , volume=. 2021 , publisher=

  41. [49]

    Zhao, Fuheng and Agrawal, Divyakant and Abbadi, Amr El and Metwally, Ahmed , booktitle=. Space

  42. [50]

    The Randomized Communication Complexity of Set Disjointness , journal =

    Johan H. The Randomized Communication Complexity of Set Disjointness , journal =

  43. [51]

    Improved Utility Analysis of Private

    Pagh, Rasmus and Thorup, Mikkel , booktitle=. Improved Utility Analysis of Private

  44. [52]

    arXiv preprint arXiv:2304.06853 , year=

    Pseudorandom Hashing for Space-bounded Computation with Applications in Streaming , author=. arXiv preprint arXiv:2304.06853 , year=

  45. [53]

    SIGMOD , pages =

    Wang, Lu and Luo, Ge and Yi, Ke and Cormode, Graham , title =. SIGMOD , pages =

  46. [54]

    Rothblum , title =

    Cynthia Dwork and Moni Naor and Toniann Pitassi and Guy N. Rothblum , title =. STOC , pages =

Pith tools

Reviewed August 3, 2026 · model on record in the stance chip above.