Questions: Trees, Forests, and Spanning Trees

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A connected graph has 10 vertices. Alice removes edges one at a time, always keeping the graph connected, until no more edges can be removed without disconnecting it. How many edges remain?

A10 — one edge per vertex is needed for connectivity
B9 — she has constructed a spanning tree with n − 1 edges
CIt depends on the original graph — different graphs require different minimum edge counts
DAt least 10 — a connected graph must have at least as many edges as vertices
Question 2 Multiple Choice

In a tree on 8 vertices, how many distinct simple paths exist between any given pair of vertices?

AIt depends on the structure of the tree — some trees have more paths than others
B0 — trees have no cycles, so you cannot traverse between vertices
CExactly 1 — the acyclic condition guarantees a unique path between every pair
DAt least 2 — every connected graph provides multiple routes
Question 3 True / False

A forest with 15 vertices and 4 connected components has exactly 11 edges.

TTrue
FFalse
Question 4 True / False

In any tree with more than one vertex, nearly every vertex has degree at least 2.

TTrue
FFalse
Question 5 Short Answer

Why is there exactly one path between any two vertices in a tree? Explain the argument.

Think about your answer, then reveal below.