"If S is a maximal independent set in some graph, it is a maximal clique or maximal complete subgraph in the complementary graph." from Wikipedia
Does this mean, given a graph G, if it is bipartite, then it's complement G' will have 2 maximal cliques? With, Union of vertices in these two cliques = set of all vertices in G?
example -
image
Here, Gc is bipartite, we can color it with 2 colors, and the independent groups are - {a, b, c} and {d, e}.
And so graph G (it's complement) have 2 maximal cliques {a, b, c} and {d, e}, whose union is all vertices.
So, is it true, for every graph??
Yes, if the vertex set of a graph $G$ can be partitioned into two independent sets, then the vertex set of the complete graph $G^c$ can be partitioned into two cliques (and conversely). More generally, for any subset $W \subseteq V(G)$, $W$ is an independent set of $G$ iff $W$ is a clique of $G^c$. And $W$ is a maximal independent set of $G$ iff $W$ is a maximal clique of $G^c$.