Good day to everybody,
I would like to use a nice mathematical notation to represent the following statement:
The number of triangles $t$ in graph $G = (V,E)$ dominates its number of edges and vertices.
I have thought of the following notations:
- |V| + |E| $\leq$ t
- $max\{|V|,|E|\}$ $\leq$ t
- t = $\Omega(|V|+|E|)$
- t = $\Omega(max\{|V|,|E|\})$
- $|V|+|E|$ = $O(t)$
- $max\{|V|,|E|\}$ = $O(t)$
I like options 1 and 4 best, but I am puzzled among all of the options.
To give you a small context, we have an algorithm that accepts a graph along with its triangles, and just goes through all the vertices, all the edges, and all the triangles. As we are interested in triangles, we want to have the assumption that "it is the triangles that matter to us most here and hence we assume that their number dominates everything else, other cases are not important to us".
Which notation do you think (or, even better, know for sure) fits the statement better?
Thank you.