edited by
2,556 views
6 votes
6 votes

Let $G=(V,E)$ be a directed graph with $n(\geq 2)$ vertices, including a special vertex $r$. Each edge $e \in E$ has a strictly positive edge weight $w(e)$. An arborescence in $G$ rooted at $r$ is a subgraph $H$ of $G$ in which every vertex $u \in V \backslash \{r\}$ has a directed path to the special vertex $r$. The weight of an arborescence $H$ is the sum of the weights of the edges in $H$.

Let $H^*$ be a minimum arborescence rooted at $r$, and $w^*$ the weight of $H^*$. Which of the following is $NOT$ always true?

  1. $\displaystyle w^* \geq \sum_{u \in V \backslash \{r\}} \min_{(u,v) \in E} w((u,v))$
  2. $\displaystyle w^* \geq \sum_{u \in V \backslash \{r\}} \min_{(v,u) \in E} w((v,u))$
  3. $H^*$ has exactly $n-1$ edges
  4. $H^*$ is acyclic
  5. $w^*$ is less than the weight of the minimum weight directed Hamiltonian cycle in $G$, when $G$ has a directed Hamiltonian cycle
edited by

1 Answer

10 votes
10 votes

For these questions it is better to get some counter examples by trying small graphs. Consider the following graph:

Now, as per the question, an arborescence is a subgraph with all incoming edges to the special vertex $r.$ So, for the above graph it is just the edge $a-r$ which is of weight $2.$

Now, option A says that if we sum up all the outgoing edge weights (minimum weight in case multiple outgoing edges exist) of all vertices excluding $r$, the sum will be greater than or equal to the weight of the minimum arborescence. This is true because all the edges in the minimum arborescence will be included here as the outgoing edges of the other vertices. 

Now, option B is false. Because instead of outgoing edges we are adding the weights of incoming edges. And these edges are not part of the arborescence. For example, in the above graph, only one vertex $a \in V \backslash \{r\}.$

$ \sum_{u \in V \backslash \{r\}} \min_{(v,u) \in E} w((v,u)) = w(r,a) = 5 >  w^*.$

Options C and D are straightforward TRUE as for minimum arborescence we only need to consider the incoming edges to $r$ from $n-1$ other vertices thus making it acyclic too. 

For option E, suppose a graph has a directed Hamiltonian cycle. In an arborescence every vertex is connected and we need "one more" edge to make it a cycle. But this may or may not be a Hamiltonian cycle as a Hamiltonian cycle requires that in the path from the start and end of any vertex, no vertex is repeated. But if we take any directed Hamiltonian cycle, every vertex has a directed path to every other vertex (special vertex $r$ can be any of the given vertices) and so it is an arborescence. What will happen if we remove an edge $(u,v)$ from such a minimum weighted directed Hamiltonian cycle?. Then we no longer have a path to vertex $v$ but all vertices still have a path to vertex $u$ and so $u$ can be the special vertex making it still an arborescence. Since the weight of this edge $(u,v)$ is guaranteed to be positive, this means the weight of this arborescence must be STRICTLY less than the weight of the minimum Hamiltonian cycle. Thus option E is TRUE. 

So, Correct answer: B.

edited by
Answer:

Related questions

2.3k
views
2 answers
7 votes
Arjun asked Dec 18, 2018
2,288 views
Consider directed graphs on $n$ labelled vertices $\{1,2, \dots ,n\}$, where each vertex has exactly one edge coming in and exactly one edge going out. We allow self-loops. How ... -1} \frac{1}{k}\bigg]$\frac{n!(n-1)}{2}$None of the above
1.7k
views
1 answers
5 votes
Arjun asked Dec 18, 2018
1,734 views
A graph is $d$ - regular if every vertex has degree $d$. For a $d$ - regular graph on $n$ vertices, which of the following must be TRUE?$d$ divides $n$Both $d$ and ... oddAt least one of $d$ and $n$ is oddAt least one of $d$ and $n$ is even
636
views
1 answers
3 votes
soujanyareddy13 asked Mar 25, 2021
636 views
Let $G$ be an undirected graph. For any two vertices $u, v$ in $G$, let $\textrm{cut} (u, v)$ be the minimum number of edges that should be deleted from $G$ so that there is ... $\textrm{cut} (b,c) = 2$ and $\textrm{cut} (c,d) = 1$
6.8k
views
7 answers
54 votes
go_editor asked Dec 23, 2016
6,843 views
An undirected graph is complete if there is an edge between every pair of vertices. Given a complete undirected graph on $n$ vertices, in how many ways can you choose a direction for the ... 2^n$2^m, \: \text{ where } m=\frac{n(n-1)}{2}$