I have the following description of a graph:
Let $G$ be a graph such that all of its vertices are subsets with two elements of $\{1,2,...,n\} (n\ge 2)$ where two sets $A,B$ are adjacent iff $A\cap B = \emptyset$.
I don't understand to express this graph, what does it mean with graphs $A\cap B = \emptyset$? how can an intersection not be empty?
For example:
$A=\{a,b\}, B=\{b,c\}: $ a___b___c is $A\cap B = \emptyset$?
Then how can there be $A\cap B \neq \emptyset$?
Note I study simple graphs so no double edges or edges that go into where it came from.
It may help to rewrite it.
Let us say a 2-subset is a subset with two elements, and let $n\geq 2$.
I would rewrite the statement in the following way.
Let $G$ be a graph such that all of its vertices are 2-subsets of $\{1,2,\ldots,n\}$, where two vertices $A$ and $B$ of $G$ are adjacent if and only if they are disjoint subsets of $\{1,2,\ldots,n\}$.
So vertices represent subsets, and two are connected if they do not intersect.
Hope this helps.