Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

need some clarification about DAG (Directed Acyclic Graph)

I know the definition of a DAG, which is a directed graph without any cycle. My question is: Can I consider 2 separate DAGs as one DAG? If not, what is the technical name for a set of DAGs?

like image 730
abc Avatar asked Nov 03 '13 21:11

abc


People also ask

What is true about directed acyclic graph DAG?

In computer science and mathematics, a directed acyclic graph (DAG) is a graph that is directed and without cycles connecting the other edges. This means that it is impossible to traverse the entire graph starting at one edge. The edges of the directed graph only go one way.

What is the purpose of a DAG?

DAGs are used to encode researchers' a priori assumptions about the relationships between and among variables in causal structures. DAGs contain directed edges (arrows), linking nodes (variables), and their paths.

What is DAG directed acyclic graph give an example?

A directed acyclic graph (or DAG) is a digraph that has no cycles. Example of a DAG: Theorem Every finite DAG has at least one source, and at least one sink. In fact, given any vertex v, there is a path from some source to v, and a path from v to some sink.

Why are directed acyclic graphs useful?

They provide a simple visual representation of causal relationships among a set of variables. If these causal relationships are know to be true, then great. But if not, then they make it explicit what assumptions are being made. They can be used to determining if a given pair of variables are independent.


1 Answers

A DAG can have disconnected parts, since the only requirements are being a directed, acyclic graph.

If you want to specify that it is connected, you could say "connected DAG".

like image 176
Paul Draper Avatar answered Sep 30 '22 14:09

Paul Draper