I have the following two questions in my book:
Determine whether the graph shown has directed or undirected edges, whether it has multiple edges, and whether it has one or more loops.
Because Graph (7) has multiple edges (as the book says "A Directed graph may have multiple directed edges from a vertex to a second (possibly the same) vertex are called as directed multigraphs") and it also has loops at vertex c and e. Similar is the case with Graph (9). They should both be Directed Multigraphs but the book says that Graph(7) is a directed graph only and Graph (9) is a Directed Multigraph. Why Graph(7) is only a directed graph instead of a directed multigraph?
Describe a graph model that represents whether each person at a party knows the name of each other person at the part. Should the edges be directed or undirected? Should multiple edges be allowed? Should loops be allowed?
I think the graph should be directed because its not necessary that if A knows the name of B then B would also the know the name of A. Moreover, because of this reason I think that the graph should have multiple edge but the answer at the back of the book is different. The book says that the the graph should be directed but it should not have multiple edges. Why is that?
Thanks!