A Complete Digraph is an Undirected Graph?
$begingroup$
Can I consider the Undirected Graph as a special case of Digraphs where all edges points for both directions?
A complete (completely connected) digraph turns to an undirected graph?
directed-graphs
$endgroup$
add a comment |
$begingroup$
Can I consider the Undirected Graph as a special case of Digraphs where all edges points for both directions?
A complete (completely connected) digraph turns to an undirected graph?
directed-graphs
$endgroup$
$begingroup$
Yes, and yes. You should maybe also consider how you handle self-loops (technically these edges point in both directions), but this is not really a big deal.
$endgroup$
– platty
Dec 10 '18 at 23:28
$begingroup$
Thank you! In my case study there will be no self-loops
$endgroup$
– Henrique Tannús
Dec 10 '18 at 23:34
add a comment |
$begingroup$
Can I consider the Undirected Graph as a special case of Digraphs where all edges points for both directions?
A complete (completely connected) digraph turns to an undirected graph?
directed-graphs
$endgroup$
Can I consider the Undirected Graph as a special case of Digraphs where all edges points for both directions?
A complete (completely connected) digraph turns to an undirected graph?
directed-graphs
directed-graphs
asked Dec 10 '18 at 23:26
Henrique TannúsHenrique Tannús
112
112
$begingroup$
Yes, and yes. You should maybe also consider how you handle self-loops (technically these edges point in both directions), but this is not really a big deal.
$endgroup$
– platty
Dec 10 '18 at 23:28
$begingroup$
Thank you! In my case study there will be no self-loops
$endgroup$
– Henrique Tannús
Dec 10 '18 at 23:34
add a comment |
$begingroup$
Yes, and yes. You should maybe also consider how you handle self-loops (technically these edges point in both directions), but this is not really a big deal.
$endgroup$
– platty
Dec 10 '18 at 23:28
$begingroup$
Thank you! In my case study there will be no self-loops
$endgroup$
– Henrique Tannús
Dec 10 '18 at 23:34
$begingroup$
Yes, and yes. You should maybe also consider how you handle self-loops (technically these edges point in both directions), but this is not really a big deal.
$endgroup$
– platty
Dec 10 '18 at 23:28
$begingroup$
Yes, and yes. You should maybe also consider how you handle self-loops (technically these edges point in both directions), but this is not really a big deal.
$endgroup$
– platty
Dec 10 '18 at 23:28
$begingroup$
Thank you! In my case study there will be no self-loops
$endgroup$
– Henrique Tannús
Dec 10 '18 at 23:34
$begingroup$
Thank you! In my case study there will be no self-loops
$endgroup$
– Henrique Tannús
Dec 10 '18 at 23:34
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
This is often, but not always a good way to apply a statement about directed graphs to an undirected graph.
For an example where it does not work: plenty of connected but undirected graphs do not have an Eulerian tour. But if you turn a connected graph into a directed graph by replacing each edge with two directed edges, then the resulting directed graph will always have an Eulerian tour.
The problem in this example is that an Eulerian tour in the undirected graph can traverse each edge $vw$ only once, whereas an Eulerian tour in the directed graph we obtain would have to take the directed edge $(v,w)$ once and the directed edge $(w,v)$ once.
On the other hand, connectivity is preserved: having a path from one vertex to another in the undirected graph is equivalent to having such a path in the directed graph constructed from it.
Whenever you have a tool for dealing with directed graphs, you can always try to apply it to an undirected graph by using this double-edge construction, but you should check to see what the effect is before proceeding.
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3034636%2fa-complete-digraph-is-an-undirected-graph%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
This is often, but not always a good way to apply a statement about directed graphs to an undirected graph.
For an example where it does not work: plenty of connected but undirected graphs do not have an Eulerian tour. But if you turn a connected graph into a directed graph by replacing each edge with two directed edges, then the resulting directed graph will always have an Eulerian tour.
The problem in this example is that an Eulerian tour in the undirected graph can traverse each edge $vw$ only once, whereas an Eulerian tour in the directed graph we obtain would have to take the directed edge $(v,w)$ once and the directed edge $(w,v)$ once.
On the other hand, connectivity is preserved: having a path from one vertex to another in the undirected graph is equivalent to having such a path in the directed graph constructed from it.
Whenever you have a tool for dealing with directed graphs, you can always try to apply it to an undirected graph by using this double-edge construction, but you should check to see what the effect is before proceeding.
$endgroup$
add a comment |
$begingroup$
This is often, but not always a good way to apply a statement about directed graphs to an undirected graph.
For an example where it does not work: plenty of connected but undirected graphs do not have an Eulerian tour. But if you turn a connected graph into a directed graph by replacing each edge with two directed edges, then the resulting directed graph will always have an Eulerian tour.
The problem in this example is that an Eulerian tour in the undirected graph can traverse each edge $vw$ only once, whereas an Eulerian tour in the directed graph we obtain would have to take the directed edge $(v,w)$ once and the directed edge $(w,v)$ once.
On the other hand, connectivity is preserved: having a path from one vertex to another in the undirected graph is equivalent to having such a path in the directed graph constructed from it.
Whenever you have a tool for dealing with directed graphs, you can always try to apply it to an undirected graph by using this double-edge construction, but you should check to see what the effect is before proceeding.
$endgroup$
add a comment |
$begingroup$
This is often, but not always a good way to apply a statement about directed graphs to an undirected graph.
For an example where it does not work: plenty of connected but undirected graphs do not have an Eulerian tour. But if you turn a connected graph into a directed graph by replacing each edge with two directed edges, then the resulting directed graph will always have an Eulerian tour.
The problem in this example is that an Eulerian tour in the undirected graph can traverse each edge $vw$ only once, whereas an Eulerian tour in the directed graph we obtain would have to take the directed edge $(v,w)$ once and the directed edge $(w,v)$ once.
On the other hand, connectivity is preserved: having a path from one vertex to another in the undirected graph is equivalent to having such a path in the directed graph constructed from it.
Whenever you have a tool for dealing with directed graphs, you can always try to apply it to an undirected graph by using this double-edge construction, but you should check to see what the effect is before proceeding.
$endgroup$
This is often, but not always a good way to apply a statement about directed graphs to an undirected graph.
For an example where it does not work: plenty of connected but undirected graphs do not have an Eulerian tour. But if you turn a connected graph into a directed graph by replacing each edge with two directed edges, then the resulting directed graph will always have an Eulerian tour.
The problem in this example is that an Eulerian tour in the undirected graph can traverse each edge $vw$ only once, whereas an Eulerian tour in the directed graph we obtain would have to take the directed edge $(v,w)$ once and the directed edge $(w,v)$ once.
On the other hand, connectivity is preserved: having a path from one vertex to another in the undirected graph is equivalent to having such a path in the directed graph constructed from it.
Whenever you have a tool for dealing with directed graphs, you can always try to apply it to an undirected graph by using this double-edge construction, but you should check to see what the effect is before proceeding.
answered Dec 11 '18 at 23:16
Misha LavrovMisha Lavrov
47.9k657107
47.9k657107
add a comment |
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3034636%2fa-complete-digraph-is-an-undirected-graph%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
$begingroup$
Yes, and yes. You should maybe also consider how you handle self-loops (technically these edges point in both directions), but this is not really a big deal.
$endgroup$
– platty
Dec 10 '18 at 23:28
$begingroup$
Thank you! In my case study there will be no self-loops
$endgroup$
– Henrique Tannús
Dec 10 '18 at 23:34