Which statement correctly describes the difference between a directed graph and an undirected graph?
Think about whether the connection between two points has a one-way or two-way relationship.
Directed graphs have edges that point from one vertex to another, showing a one-way relationship. Undirected graphs have edges that connect vertices without direction, meaning the connection is mutual.
In an undirected graph with 5 vertices where every vertex is connected to every other vertex exactly once, how many edges are there?
Use the formula for edges in a complete undirected graph: n(n-1)/2.
For 5 vertices, the number of edges is 5 × 4 / 2 = 10.
Consider a graph with 4 vertices where every possible edge exists. How many edges does the directed graph have compared to the undirected graph?
Remember that directed graphs count edges in both directions separately, while undirected graphs count each connection once.
Directed graph edges = n × (n - 1) = 4 × 3 = 12. Undirected graph edges = n × (n - 1) / 2 = 4 × 3 / 2 = 6.
Given the edge list: (A → B), (B → A), (B → C), (C → B), (A → C), (C → A), which type of graph does this represent?
Check if edges exist in both directions between pairs of vertices.
Edges exist in both directions between vertices, indicating a directed graph where connections go both ways explicitly.
Which statement correctly explains connectivity differences between directed and undirected graphs?
Think about whether you can travel back and forth between two points in each graph type.
Undirected graphs have edges without direction, so paths are two-way. Directed graphs have edges with direction, so a path from A to B may not imply a path from B to A.