Number of edges in a tree digraph

In summary, the discussion is about the validity of the statement that if an undirected graph is a tree, then its number of edges equals the number of vertices minus one. The question is whether this is also true for directed graphs. There is no clear definition of a tree for directed graphs, but one possible way to form a unique tree is by labeling the nodes and using breadth-first search starting from the base node. However, without a way to prioritize nodes, it is unclear how to create a unique tree. The source also mentions a book that discusses this topic in more detail.
  • #1
CGandC
326
34
I know that if an undirected graph is a tree then its number of edges satisfies ## |E| = |V| - 1 ##.
If a directed graph ( digraph ) is a tree, is the result also true? ( I can imagine just taking an undirected tree and making its edges directed but this is specious since it's a little bit more delicate - the digraph that will result will not necessarily be connected, the direction of the edges matter and the definition of what is a 'tree' for digraph needs to be clearly defined )

I haven't seen any discussion about this in discrete mathematics books I have nor directly written on the web ( tree digraph is called 'polytree' from what I've read )
 
Physics news on Phys.org
  • #2
I have no reason to think that there is a difference in the edge count just because some edges are directed.
 
  • #3
What exactly is the definition of a tree for a directed graph? For an undirected graph there are several equivalent definitions (no loops, unique path between vertices) that are not equivalent for directed graphs (e.g. it's easy to make a triangle with no loops but two paths between a pair of vertices)
 
  • #4
Well, the reason I'm asking is because I've been reading about Breadth-first trees from CLRS ( a book about algorithms ) in chapter 20 where they're define as:

1679471941869.png


where ## \pi ## is a function ( whose definition depends on the given graph and source vertex for the BFS algorithm ) "attaching" attributes for the vertices of the graph and ## v.\pi ## means the predecessor ( parent ) node of ## v ##

1679471959938.png

( Source: Introduction to Algorithms by Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein. )According to the definition of BFS tree ## E_\pi ## is composed of directed edges if the graph ## G ## itself is directed, but I don't understand how he applies theorem ## B.2 ## ( which is for undirected graphs ) for ## G_\pi ## ( which can be directed ) since a tree for a directed graph is not defined anywhere.

How to solve this predicament in definitions?
 
  • #5
If we have a finite directed or non-directed graph, then here is one way to proceed I think. If the number of nodes is ##n## then we can label them from ##1## to ##n-1##. The node ##1## is essentially the "base node" so to speak (the node at the top of the tree). Next we check whether we can reach all possible points from the base node [this is assuming we necessarily want a single tree as a result]. After that we can use breadth first search starting from node ##1##.

There are no loops in the resulting tree. And also, starting from the base node, there is always a unique path to every other node. However, one thing here that isn't clear to me is that if we don't have a number attached to the nodes [that is, a way of giving priority one node over the other] then how could we get a unique tree. If all the nodes are numbered then we definitely seem to get a unique tree.

=================================================

The above I wrote before the last post, but didn't post it since I thought it might not be relevant to the topic. Since it seems relevant to some extent, I am posting it. What I was trying to say was that as long as:
(1) All the nodes in our directed graph are reachable from source node.
(2) We number all all the nodes from ##1## to ##n##, with ##1## being number of the source node.

Then given the above two conditions there definitely seems to be a way to form a unique tree using breadth-first search.

=================================================

Regarding what has been quoted from the book, it would be a bit difficult to comment (without reading/understanding it in detail) since I only know the very basic of this particular topic.
 
  • Like
Likes CGandC
  • #6
SSequence said:
If we have a finite directed or non-directed graph, then here is one way to proceed I think. If the number of nodes is ##n## then we can label them from ##1## to ##n-1##. The node ##1## is essentially the "base node" so to speak (the node at the top of the tree). Next we check whether we can reach all possible points from the base node [this is assuming we necessarily want a single tree as a result]. After that we can use breadth first search starting from node ##1##.

There are no loops in the resulting tree. And also, starting from the base node, there is always a unique path to every other node. However, one thing here that isn't clear to me is that if we don't have a number attached to the nodes [that is, a way of giving priority one node over the other] then how could we get a unique tree. If all the nodes are numbered then we definitely seem to get a unique tree.

=================================================

The above I wrote before the last post, but didn't post it since I thought it might not be relevant to the topic. Since it seems relevant to some extent, I am posting it. What I was trying to say was that as long as:
(1) All the nodes in our directed graph are reachable from source node.
(2) We number all all the nodes from ##1## to ##n##, with ##1## being number of the source node.

Then given the above two conditions there definitely seems to be a way to form a unique tree using breadth-first search.

=================================================

Regarding what has been quoted from the book, it would be a bit difficult to comment (without reading/understanding it in detail) since I only know the very basic of this particular topic.
Thanks! makes sense now. And you're right, if you give some priority for some nodes to be scanned before others then the resulting BFS tree will be different; I think the authors meant that for a specific scan over all the vertices in the graph given a source vertex, then there will be a corresponding predecessor subgraph ## G_\pi ## and for that graph itself there is a unique simple path from the source vertex to every other vertex in the graph
 
  • Like
Likes SSequence

1. How do you calculate the number of edges in a tree digraph?

The number of edges in a tree digraph can be calculated using the formula E = V - 1, where E is the number of edges and V is the number of vertices (nodes) in the tree.

2. Does the number of edges in a tree digraph depend on the number of levels?

No, the number of edges in a tree digraph is only dependent on the number of vertices. The number of levels does not affect the number of edges.

3. Can a tree digraph have more than one edge between two vertices?

No, by definition, a tree digraph cannot have more than one edge between two vertices. This is because a tree is a connected graph with no cycles, and multiple edges between two vertices would create a cycle.

4. Is the number of edges in a tree digraph always odd?

No, the number of edges in a tree digraph can be even or odd, depending on the number of vertices. However, if the number of vertices is odd, the number of edges will always be even, and vice versa.

5. Does the direction of the edges matter in a tree digraph?

Yes, the direction of the edges in a tree digraph is important. Unlike undirected trees, the direction of the edges in a tree digraph determines the parent-child relationship between nodes.

Similar threads

  • Calculus and Beyond Homework Help
Replies
2
Views
4K
  • Set Theory, Logic, Probability, Statistics
Replies
4
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
7
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
5
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
11
Views
511
  • Calculus and Beyond Homework Help
Replies
17
Views
910
Replies
1
Views
795
Back
Top