Clément Canonne

@ccanonne
1 Followers
44 Following
32 Posts
Lecturer at the University of Sydney. Prev postdoc at IBM Research, Stanford; Columbia PhD. Converts coffee into bad puns: theorems an occasional byproduct. He/him. #USydCompSci
Websitehttps://ccanonne.github.io/

You get the #graph as H, which then allows you to do quick-and-dirty (or slow-and-principled) analysis in Mathematica, should you want to. E.g., generating illustrations for slides :)

For instance, visualise the adjacency matrix with "MatrixPlot[AdjacencyMatrix[H]]"

Here's a simple and quick way to generate a planted clique in an Erdős–Rényi–Gilbert graph in #Mathematica. Below, such a random graph for n=60, k=15, p=1/2.

n = 60; k = 15; p = 1/2;
G = RandomGraph[BernoulliGraphDistribution[n, p]];
K = RandomSample[Range[n], k];
H = EdgeAdd[G, Map[UndirectedEdge[#[[1]], #[[2]]] &, Subsets[K, {2}]], EdgeStyle -> Map[UndirectedEdge[#[[1]], #[[2]]] -> Red &, Subsets[K, {2}]]];
H = Graph[H, VertexStyle -> Map[# -> Red &, K]];

(repost from an earlier tweet)

Feels like this survey on #inclusivity in #theoreticalcomputerscience conferences (survey I am taking seriously, btw) might have some questions allowing several answers.
Your move, Magritte.

Another talk I really enjoyed at #FOCS2022: Manik Dhar on "Linear Hashing with ℓ∞ guarantees and two-sided Kakeya bounds"

Linear maps are also good hashes (in an ℓ∞, not total variation) sense!