I have a few questions for a practice quiz I'm struggling with about graph theory, and I'd appreciate some clarification on my answers.
- What vertices are adjacent to vertex 2?
I'm guessing this means anything that's connected to 2. In this case, it'd be 0, 1, and 4, but I just wanted to make sure.
- What is ∑(v∈V)deg(v)?
The v∈V should be a lower exponent under the sigma symbol but I couldn't figure out how to do that. I'm not really sure what this question means, so I'd appreciate some help or a push in the right direction.
- A clique is a subgraph G' = (V', E') that is complete (i.e., every vertex in the clique is connected to every other vertex in the clique). What is the largest clique contained in this graph? Note both the size and the vertices in V'.
I know a clique means that every vertex is connected to every other vertex. I know the triangle connecting 0, 1, and 2 is an obvious one but I'm not sure if that's the largest. I get confused with the definition of a clique when I look at larger sets. If I had to answer this question I would choose the graph formed by 0, 1, 2 and 4, but again, I'm not sure if that's the largest clique in the graph.

Regarding Q3, here's a way to keep the overview and perhaps see more easily whether there is a size 4 (or larger) clique in the graph: Every vertex in a size $\ge 4$ clique has at least degree $3$. Hence any vertices of lower degree are just obfuscating our view to find such a clique. So remove vertices $3$ and $5$ who have lower degree. After tat, $7$ has only degree $2$ left and can be removed as well. After that, we can remove vertex $6$ for the same reason and so on. In this example, we can ultimately remove all vertices and conclude that no such clique exists. (In general, this method is not guaranteed to get rid of all vertices if there is no large clique, but may at least simplify things a bit)