
I am working on an exercise based on this image. I have found the maximum clique size to be 4. I have a few questions on the concept of graph theory.
By definition, a clique is a complete subgraph where each pair of vertices are connected. Would this mean that if I was counting 3-cliques, (3,4,5), (3,4,6), (3,5,6), and (4,5,6) would count as 3-cliques? Or should I omit those subgraphs since they are part of the 4-clique.
Does every graph have only one maximum clique? Imagining it visually in my mind, I feel like it is possible to have more than one maximum clique.
One of the questions in the exercise asks if every graph with one or more nodes must have at least one clique. Is there such thing as a 2-clique (just an edge) or should every clique form a closed shape?
I can't seem to draw an instance of a 4-clique that does not have a 3-clique, so it is safe to assume that every 4-clique has at least one 3-clique? How would I go about checking for something like this on a larger scale?