My question is motivated by the following example: For $n \geq 1$, let $G$ be the complete $n$-partite graph on $2n$ vertices, i.e., every vertex of $G$ is connected to all others except one. Then $G$ has $2^n$ maximal cliques, with each one formed by choosing a vertex from each of the $n$ pairs of disconnected nodes. In this case, it is easy to see from the structure of $G$ that each vertex belongs to $2^n/2 = 2^{n-1}$ maximal cliques.
More generally, what can we say (if anything) about the number of maximal cliques each vertex of $G$ belongs to, if we do not know its structure, but only that $G$ is connected and has exponentially many maximal cliques?
In short, I would like to find out to what extent it is possible to derive local information about maximal clique involvement of vertices in $G$ from the global property of the number of maximal cliques $G$ has.
My hypothesis is the following, though I am unsure about the quantifiers and asymptotics.
Let $G$ be an $n$-vertex connected graph with $\Omega(f(n))$ maximal cliques for some exponential function $f(n)$. Then there always exists a subset $S$ of $\Omega(n)$ vertices such that each vertex of $S$ belongs to $\Omega(f(n))$ maximal cliques.
Proof. Suppose not. That is, suppose that for all subsets $S$ of $G$ containing $\Omega(n)$ vertices, each vertex of $S$ belongs to $O(g(n))$ maximal cliques for some subexponential function $g(n)$. By definition, there exist constants C,D > 0 such that for $n$ sufficiently large we have the following: For all subsets $S$ of size at least $Cn$, each vertex of $S$ belongs to at most $Dg(n)$ maximal cliques. Since $|G|=n$, we can assume that $0 < C \leq 1$. Then letting $S=X$, we have that each vertex of $X$ belongs to at most $Dg(n)$ maximal cliques, so the total number is at most $n\cdot Dg(n)$. However, we have that $n\cdot Dg(n) \neq \Omega(f(n))$, since $f(n)$ is exponential and $g(n)$ is subexponential, a contradiction.
To illustrate it let's modifying your example a bit: Attach a path of length 2n to any vertex of your graph. Now the graph has 4n vertices. It still has 2^n cliques but now half of vertices are not included in any maximal clique.
– pancake Dec 24 '23 at 15:40