I am looking for a symbol if any for the following equation in my algorithm
This is to find closed pattern where $p_i$ is longer than $p$ and $p$ is a sub-pattern of $p_i$ and $support(p) = support(p_i)$
so can I say
if $\forall \; p \subset p_i$ and $support(p) = support(p_i)$ or
if $ \left | \{ p_i | p \subset p_i, support(p) = support(p_i) \} \right | > 0$
Or any other better way to represent?