Prove that the total distance is minimised (when travelling across the longest path)Algorithm to determine a minimal cost graphIs there a problem that cannot be represented using graph?Why does if A is a spanning tree which doesn't have $e_1$ then $Abigcupe_1$ has a unique cycle?Path in directed, weighted, cyclic graph with total distance closest to D?Is this a hypergraph?Shortest Path in a Graph with Interacting Edge WeightsHow to find an optimal sequence of matchingConnected components of the graph on $[n]$ in which $i,j$ are connected if $mathrmgcd(i,j) > g$Is a set of acyclic |V| - 1 light edges always a Minimum Spanning Tree?Deleting edges such that largest connected component has at most $n/4$ nodes
Is all copper pipe pretty much the same?
If Invisibility ends because the original caster casts a non-concentration spell, does Invisibility also end on other targets of the original casting?
Programmatically creating a notebook containing plots for PDF export
Silly Sally's Movie
How do anti-virus programs start at Windows boot?
What is the probability somebody's birthday is the day before mine?
Why doesn't the EU now just force the UK to choose between referendum and no-deal?
Does splitting a potentially monolithic application into several smaller ones help prevent bugs?
Can't remove a file with file mode bits a+rw
Should QA ask requirements to developers?
Decoding assembly instructions in a Game Boy disassembler
A curious inequality concerning binomial coefficients
The three point beverage
Single word request: Harming the benefactor
Playing ONE triplet (not three)
Gravity alteration as extermination tool viable?
Making a sword in the stone, in a medieval world without magic
Co-worker team leader wants to inject the crap software product of his friends into our development. What should I say to our common boss?
Block storage rewrites
My story is written in English, but is set in my home country. What language should I use for the dialogue?
This equation is outside the page, how to modify it
Force user to remove USB token
Fourth person (in Slavey language)
Who is our nearest neighbor
Prove that the total distance is minimised (when travelling across the longest path)
Algorithm to determine a minimal cost graphIs there a problem that cannot be represented using graph?Why does if A is a spanning tree which doesn't have $e_1$ then $Abigcupe_1$ has a unique cycle?Path in directed, weighted, cyclic graph with total distance closest to D?Is this a hypergraph?Shortest Path in a Graph with Interacting Edge WeightsHow to find an optimal sequence of matchingConnected components of the graph on $[n]$ in which $i,j$ are connected if $mathrmgcd(i,j) > g$Is a set of acyclic |V| - 1 light edges always a Minimum Spanning Tree?Deleting edges such that largest connected component has at most $n/4$ nodes
$begingroup$
Here is the problem: Given a tree $T$, I need to visit every node in the tree once. I can start and end anywhere I want.
As my specification is not really clear I made up an example: Consider the graph (which is a tree here - undirected weighted acyclic graph) to have nodes as cities and edges as roads between cities. I need to deliver something to every city (visit every node at least once). I can start from any city and end at any city that I choose to.
I read the following result. Find the two cities in the graph that are the farthest apart (call them $c1$ and $c2$). Start from one of them ($c1$ or $c2$), visit every other city along the way until I reach ($c2$ or $c1$). This minimises the total distance to travel.
How should I prove that this is the minimum distance ?
I attempted the following. I have the final route and I call edges, $m_1, m_2, ..., m_i$ and $e_1, e_2, ..., e_j$. Where $m_1, m_2, ..., m_i$ are the edges along the cities that are the farthest apart ($c1$ and $c2$) and $e_1, e_2, ..., e_j$ are everything else in the graph. As I start from $c1$, I travel along edges labelled m exactly once and everything else labelled e is a digression and go back and forth twice on those edges, before I reach $c2$.
We know that $m_1, m_2, ..., m_i$ and $e_1, e_2, ..., e_j$ taken together include all the edges on the graph (as it is a tree, there's only a unique path between every two nodes). So the distance I travel could be given as $2(e_1 + e_2 + .... + e_j) + (m_1 + m_2 + ... + m_i)$.
I need to prove that this sum is less than every other route that I can take to reach all the cities. My intuition says that this has to be the shortest route. I feel that have to use the fact that $(m_1 + m_2 + ... + m_i)$ is the maximum between any two nodes in the graph somehow (is that called the diameter ?), and arrive at a contradiction.
This is the kind of picture I have in my mind (red edges are in ($m_1, m_2, ..., m_i$) and the grey ones are everything else),

That graph is still a tree (please ignore the arrow head in the edges that show how I decide to travel). I don't to where to go from here. I would appreciate a proof that is simple to understand (This is not a homework or anything related to coursework.)
graphs graph-theory trees correctness-proof
$endgroup$
add a comment |
$begingroup$
Here is the problem: Given a tree $T$, I need to visit every node in the tree once. I can start and end anywhere I want.
As my specification is not really clear I made up an example: Consider the graph (which is a tree here - undirected weighted acyclic graph) to have nodes as cities and edges as roads between cities. I need to deliver something to every city (visit every node at least once). I can start from any city and end at any city that I choose to.
I read the following result. Find the two cities in the graph that are the farthest apart (call them $c1$ and $c2$). Start from one of them ($c1$ or $c2$), visit every other city along the way until I reach ($c2$ or $c1$). This minimises the total distance to travel.
How should I prove that this is the minimum distance ?
I attempted the following. I have the final route and I call edges, $m_1, m_2, ..., m_i$ and $e_1, e_2, ..., e_j$. Where $m_1, m_2, ..., m_i$ are the edges along the cities that are the farthest apart ($c1$ and $c2$) and $e_1, e_2, ..., e_j$ are everything else in the graph. As I start from $c1$, I travel along edges labelled m exactly once and everything else labelled e is a digression and go back and forth twice on those edges, before I reach $c2$.
We know that $m_1, m_2, ..., m_i$ and $e_1, e_2, ..., e_j$ taken together include all the edges on the graph (as it is a tree, there's only a unique path between every two nodes). So the distance I travel could be given as $2(e_1 + e_2 + .... + e_j) + (m_1 + m_2 + ... + m_i)$.
I need to prove that this sum is less than every other route that I can take to reach all the cities. My intuition says that this has to be the shortest route. I feel that have to use the fact that $(m_1 + m_2 + ... + m_i)$ is the maximum between any two nodes in the graph somehow (is that called the diameter ?), and arrive at a contradiction.
This is the kind of picture I have in my mind (red edges are in ($m_1, m_2, ..., m_i$) and the grey ones are everything else),

That graph is still a tree (please ignore the arrow head in the edges that show how I decide to travel). I don't to where to go from here. I would appreciate a proof that is simple to understand (This is not a homework or anything related to coursework.)
graphs graph-theory trees correctness-proof
$endgroup$
add a comment |
$begingroup$
Here is the problem: Given a tree $T$, I need to visit every node in the tree once. I can start and end anywhere I want.
As my specification is not really clear I made up an example: Consider the graph (which is a tree here - undirected weighted acyclic graph) to have nodes as cities and edges as roads between cities. I need to deliver something to every city (visit every node at least once). I can start from any city and end at any city that I choose to.
I read the following result. Find the two cities in the graph that are the farthest apart (call them $c1$ and $c2$). Start from one of them ($c1$ or $c2$), visit every other city along the way until I reach ($c2$ or $c1$). This minimises the total distance to travel.
How should I prove that this is the minimum distance ?
I attempted the following. I have the final route and I call edges, $m_1, m_2, ..., m_i$ and $e_1, e_2, ..., e_j$. Where $m_1, m_2, ..., m_i$ are the edges along the cities that are the farthest apart ($c1$ and $c2$) and $e_1, e_2, ..., e_j$ are everything else in the graph. As I start from $c1$, I travel along edges labelled m exactly once and everything else labelled e is a digression and go back and forth twice on those edges, before I reach $c2$.
We know that $m_1, m_2, ..., m_i$ and $e_1, e_2, ..., e_j$ taken together include all the edges on the graph (as it is a tree, there's only a unique path between every two nodes). So the distance I travel could be given as $2(e_1 + e_2 + .... + e_j) + (m_1 + m_2 + ... + m_i)$.
I need to prove that this sum is less than every other route that I can take to reach all the cities. My intuition says that this has to be the shortest route. I feel that have to use the fact that $(m_1 + m_2 + ... + m_i)$ is the maximum between any two nodes in the graph somehow (is that called the diameter ?), and arrive at a contradiction.
This is the kind of picture I have in my mind (red edges are in ($m_1, m_2, ..., m_i$) and the grey ones are everything else),

That graph is still a tree (please ignore the arrow head in the edges that show how I decide to travel). I don't to where to go from here. I would appreciate a proof that is simple to understand (This is not a homework or anything related to coursework.)
graphs graph-theory trees correctness-proof
$endgroup$
Here is the problem: Given a tree $T$, I need to visit every node in the tree once. I can start and end anywhere I want.
As my specification is not really clear I made up an example: Consider the graph (which is a tree here - undirected weighted acyclic graph) to have nodes as cities and edges as roads between cities. I need to deliver something to every city (visit every node at least once). I can start from any city and end at any city that I choose to.
I read the following result. Find the two cities in the graph that are the farthest apart (call them $c1$ and $c2$). Start from one of them ($c1$ or $c2$), visit every other city along the way until I reach ($c2$ or $c1$). This minimises the total distance to travel.
How should I prove that this is the minimum distance ?
I attempted the following. I have the final route and I call edges, $m_1, m_2, ..., m_i$ and $e_1, e_2, ..., e_j$. Where $m_1, m_2, ..., m_i$ are the edges along the cities that are the farthest apart ($c1$ and $c2$) and $e_1, e_2, ..., e_j$ are everything else in the graph. As I start from $c1$, I travel along edges labelled m exactly once and everything else labelled e is a digression and go back and forth twice on those edges, before I reach $c2$.
We know that $m_1, m_2, ..., m_i$ and $e_1, e_2, ..., e_j$ taken together include all the edges on the graph (as it is a tree, there's only a unique path between every two nodes). So the distance I travel could be given as $2(e_1 + e_2 + .... + e_j) + (m_1 + m_2 + ... + m_i)$.
I need to prove that this sum is less than every other route that I can take to reach all the cities. My intuition says that this has to be the shortest route. I feel that have to use the fact that $(m_1 + m_2 + ... + m_i)$ is the maximum between any two nodes in the graph somehow (is that called the diameter ?), and arrive at a contradiction.
This is the kind of picture I have in my mind (red edges are in ($m_1, m_2, ..., m_i$) and the grey ones are everything else),

That graph is still a tree (please ignore the arrow head in the edges that show how I decide to travel). I don't to where to go from here. I would appreciate a proof that is simple to understand (This is not a homework or anything related to coursework.)
graphs graph-theory trees correctness-proof
graphs graph-theory trees correctness-proof
edited 2 hours ago
rranjik
asked 2 hours ago
rranjikrranjik
957
957
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
Let $x$ be a vertex of your tree and consider a shortest route that visits every vertex and returns to $x$. It's easy to see that, regardless of the choice of $x$, any minimal route walks along every edge exactly twice: it must use each edge at least twice, or it wouldn't be able to get back to $x$; if it uses an edge more than twice, you can rearrange to avoid the backtracking. Therefore, all such minimal routes have the same length, regardless of the choice of $x$. Call that length $L$ (which is $2(n-1)$ if the tree is unweighted and there are $n$ vertices, but this isn't important).
Now, given a minimal route from $x$, let $y$ be the last vertex to be visited for the first time (i.e., the vertex which, when you first visit it, you say "Aha, now I've been to every vertex!"). The minimal route visits every vertex on its way from $x$ to $y$, and then returns immediately to $x$ along the unique shortest path. Let $L_xy$ be the length of the walk taken from $x$ to $y$. We know that $L=L_xy+d(x,y)$, and $L$ and $d(x,y)$ don't depend on how we got to $y$, so $L_x,y$ also doesn't depend on the route and we can say that $L_xy$ is the length of any minimal walk from $x$ to $y$ that visits every vertex.
The vertex $y$ must be a leaf: if it wasn't, when you first visited $y$, you wouldn't have visited any of the vertices "beyond" it. Further, for any leaf $z$ of the tree, there are minimal routes from $x$ back to itself such that $z$ is the last vertex visited for the first time: let $v_1v_2dots v_t$ be the path from $v_1=x$ to $z=v_t$ and don't go to $v_i+1$ until you've already visited every other descendant of $v_i$.
So, to get the longest walk from $x$ that visits every vertex, pick a route whose $y$ is the leaf at greatest distance from $x$. None of the above depends on which vertex was chosen as $x$, $L_xy=L-d(x,y)$ is minimized by choosing $x$ and $y$ to be the vertices at greatest possible distance in the tree, which are both leaves.
$endgroup$
add a comment |
$begingroup$
Here is a proof rigorous enough that should be simple for you to understand.
Let $T=(V,E)$. Let $j$ be a journey that passes every city, starting at city $s$ and finishing at city $f$. Let $t_e$ is the number of times $j$ goes through edge $e$. Let $P$ be the unique path from $s$ to $f$.
Claim 1: $t_ege 1$.
Proof: If we remove edge $e$ from $T$, $T$ is separated into two trees that are disconnected to each other. If $t_enotge1$, i.e., $j$ does not include $e$, that means $j$ is disconnected, which is false.
Claim 2: $t_ege 2$ if $enotin P$.
Proof. Let $enotin P$. If we remove edge $e$ from $T$, $T$ is separated into two smaller trees that are disconnected to each other. Denote those two trees $T_1$ and $T_2$. Since $P$ is connected, $P$ is in $T_1$ entirely or $T_2$ entirely. That means both $s$ and $f$ are in $T_1$ or both are in $T_2$. Starting at $s$ in one of the smaller trees, $j$ must go to the other smaller tree through $e$ before returning to $f$ through $e$ again.
The total distance of $j$ is $$beginalignsum_ein Et_ee&=sum_ein Pt_ee + sum_ein Etext and enotin Pt_ee\
&=sum_ein E2e + sum_ein P(t_e-2)e + sum_ein Etext and enotin P(t_e-2)e\
&gesum_ein E2e + sum_ein P(t_e-2)e \
&gesum_ein E2e - sum_ein Pe \
&gesum_ein E2e - text diameter of T \
endalign$$
The other part of the proof is to show the journey can be as short as $displaystylesum_ein E2e - text diameter of T$, which can be done by an easy induction.
$endgroup$
$begingroup$
Ha! You edited in the converse faster than I could write my comment that it was missing. :)
$endgroup$
– David Richerby
36 mins ago
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: "419"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
,
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%2fcs.stackexchange.com%2fquestions%2f105534%2fprove-that-the-total-distance-is-minimised-when-travelling-across-the-longest-p%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Let $x$ be a vertex of your tree and consider a shortest route that visits every vertex and returns to $x$. It's easy to see that, regardless of the choice of $x$, any minimal route walks along every edge exactly twice: it must use each edge at least twice, or it wouldn't be able to get back to $x$; if it uses an edge more than twice, you can rearrange to avoid the backtracking. Therefore, all such minimal routes have the same length, regardless of the choice of $x$. Call that length $L$ (which is $2(n-1)$ if the tree is unweighted and there are $n$ vertices, but this isn't important).
Now, given a minimal route from $x$, let $y$ be the last vertex to be visited for the first time (i.e., the vertex which, when you first visit it, you say "Aha, now I've been to every vertex!"). The minimal route visits every vertex on its way from $x$ to $y$, and then returns immediately to $x$ along the unique shortest path. Let $L_xy$ be the length of the walk taken from $x$ to $y$. We know that $L=L_xy+d(x,y)$, and $L$ and $d(x,y)$ don't depend on how we got to $y$, so $L_x,y$ also doesn't depend on the route and we can say that $L_xy$ is the length of any minimal walk from $x$ to $y$ that visits every vertex.
The vertex $y$ must be a leaf: if it wasn't, when you first visited $y$, you wouldn't have visited any of the vertices "beyond" it. Further, for any leaf $z$ of the tree, there are minimal routes from $x$ back to itself such that $z$ is the last vertex visited for the first time: let $v_1v_2dots v_t$ be the path from $v_1=x$ to $z=v_t$ and don't go to $v_i+1$ until you've already visited every other descendant of $v_i$.
So, to get the longest walk from $x$ that visits every vertex, pick a route whose $y$ is the leaf at greatest distance from $x$. None of the above depends on which vertex was chosen as $x$, $L_xy=L-d(x,y)$ is minimized by choosing $x$ and $y$ to be the vertices at greatest possible distance in the tree, which are both leaves.
$endgroup$
add a comment |
$begingroup$
Let $x$ be a vertex of your tree and consider a shortest route that visits every vertex and returns to $x$. It's easy to see that, regardless of the choice of $x$, any minimal route walks along every edge exactly twice: it must use each edge at least twice, or it wouldn't be able to get back to $x$; if it uses an edge more than twice, you can rearrange to avoid the backtracking. Therefore, all such minimal routes have the same length, regardless of the choice of $x$. Call that length $L$ (which is $2(n-1)$ if the tree is unweighted and there are $n$ vertices, but this isn't important).
Now, given a minimal route from $x$, let $y$ be the last vertex to be visited for the first time (i.e., the vertex which, when you first visit it, you say "Aha, now I've been to every vertex!"). The minimal route visits every vertex on its way from $x$ to $y$, and then returns immediately to $x$ along the unique shortest path. Let $L_xy$ be the length of the walk taken from $x$ to $y$. We know that $L=L_xy+d(x,y)$, and $L$ and $d(x,y)$ don't depend on how we got to $y$, so $L_x,y$ also doesn't depend on the route and we can say that $L_xy$ is the length of any minimal walk from $x$ to $y$ that visits every vertex.
The vertex $y$ must be a leaf: if it wasn't, when you first visited $y$, you wouldn't have visited any of the vertices "beyond" it. Further, for any leaf $z$ of the tree, there are minimal routes from $x$ back to itself such that $z$ is the last vertex visited for the first time: let $v_1v_2dots v_t$ be the path from $v_1=x$ to $z=v_t$ and don't go to $v_i+1$ until you've already visited every other descendant of $v_i$.
So, to get the longest walk from $x$ that visits every vertex, pick a route whose $y$ is the leaf at greatest distance from $x$. None of the above depends on which vertex was chosen as $x$, $L_xy=L-d(x,y)$ is minimized by choosing $x$ and $y$ to be the vertices at greatest possible distance in the tree, which are both leaves.
$endgroup$
add a comment |
$begingroup$
Let $x$ be a vertex of your tree and consider a shortest route that visits every vertex and returns to $x$. It's easy to see that, regardless of the choice of $x$, any minimal route walks along every edge exactly twice: it must use each edge at least twice, or it wouldn't be able to get back to $x$; if it uses an edge more than twice, you can rearrange to avoid the backtracking. Therefore, all such minimal routes have the same length, regardless of the choice of $x$. Call that length $L$ (which is $2(n-1)$ if the tree is unweighted and there are $n$ vertices, but this isn't important).
Now, given a minimal route from $x$, let $y$ be the last vertex to be visited for the first time (i.e., the vertex which, when you first visit it, you say "Aha, now I've been to every vertex!"). The minimal route visits every vertex on its way from $x$ to $y$, and then returns immediately to $x$ along the unique shortest path. Let $L_xy$ be the length of the walk taken from $x$ to $y$. We know that $L=L_xy+d(x,y)$, and $L$ and $d(x,y)$ don't depend on how we got to $y$, so $L_x,y$ also doesn't depend on the route and we can say that $L_xy$ is the length of any minimal walk from $x$ to $y$ that visits every vertex.
The vertex $y$ must be a leaf: if it wasn't, when you first visited $y$, you wouldn't have visited any of the vertices "beyond" it. Further, for any leaf $z$ of the tree, there are minimal routes from $x$ back to itself such that $z$ is the last vertex visited for the first time: let $v_1v_2dots v_t$ be the path from $v_1=x$ to $z=v_t$ and don't go to $v_i+1$ until you've already visited every other descendant of $v_i$.
So, to get the longest walk from $x$ that visits every vertex, pick a route whose $y$ is the leaf at greatest distance from $x$. None of the above depends on which vertex was chosen as $x$, $L_xy=L-d(x,y)$ is minimized by choosing $x$ and $y$ to be the vertices at greatest possible distance in the tree, which are both leaves.
$endgroup$
Let $x$ be a vertex of your tree and consider a shortest route that visits every vertex and returns to $x$. It's easy to see that, regardless of the choice of $x$, any minimal route walks along every edge exactly twice: it must use each edge at least twice, or it wouldn't be able to get back to $x$; if it uses an edge more than twice, you can rearrange to avoid the backtracking. Therefore, all such minimal routes have the same length, regardless of the choice of $x$. Call that length $L$ (which is $2(n-1)$ if the tree is unweighted and there are $n$ vertices, but this isn't important).
Now, given a minimal route from $x$, let $y$ be the last vertex to be visited for the first time (i.e., the vertex which, when you first visit it, you say "Aha, now I've been to every vertex!"). The minimal route visits every vertex on its way from $x$ to $y$, and then returns immediately to $x$ along the unique shortest path. Let $L_xy$ be the length of the walk taken from $x$ to $y$. We know that $L=L_xy+d(x,y)$, and $L$ and $d(x,y)$ don't depend on how we got to $y$, so $L_x,y$ also doesn't depend on the route and we can say that $L_xy$ is the length of any minimal walk from $x$ to $y$ that visits every vertex.
The vertex $y$ must be a leaf: if it wasn't, when you first visited $y$, you wouldn't have visited any of the vertices "beyond" it. Further, for any leaf $z$ of the tree, there are minimal routes from $x$ back to itself such that $z$ is the last vertex visited for the first time: let $v_1v_2dots v_t$ be the path from $v_1=x$ to $z=v_t$ and don't go to $v_i+1$ until you've already visited every other descendant of $v_i$.
So, to get the longest walk from $x$ that visits every vertex, pick a route whose $y$ is the leaf at greatest distance from $x$. None of the above depends on which vertex was chosen as $x$, $L_xy=L-d(x,y)$ is minimized by choosing $x$ and $y$ to be the vertices at greatest possible distance in the tree, which are both leaves.
answered 43 mins ago
David RicherbyDavid Richerby
68.3k15103194
68.3k15103194
add a comment |
add a comment |
$begingroup$
Here is a proof rigorous enough that should be simple for you to understand.
Let $T=(V,E)$. Let $j$ be a journey that passes every city, starting at city $s$ and finishing at city $f$. Let $t_e$ is the number of times $j$ goes through edge $e$. Let $P$ be the unique path from $s$ to $f$.
Claim 1: $t_ege 1$.
Proof: If we remove edge $e$ from $T$, $T$ is separated into two trees that are disconnected to each other. If $t_enotge1$, i.e., $j$ does not include $e$, that means $j$ is disconnected, which is false.
Claim 2: $t_ege 2$ if $enotin P$.
Proof. Let $enotin P$. If we remove edge $e$ from $T$, $T$ is separated into two smaller trees that are disconnected to each other. Denote those two trees $T_1$ and $T_2$. Since $P$ is connected, $P$ is in $T_1$ entirely or $T_2$ entirely. That means both $s$ and $f$ are in $T_1$ or both are in $T_2$. Starting at $s$ in one of the smaller trees, $j$ must go to the other smaller tree through $e$ before returning to $f$ through $e$ again.
The total distance of $j$ is $$beginalignsum_ein Et_ee&=sum_ein Pt_ee + sum_ein Etext and enotin Pt_ee\
&=sum_ein E2e + sum_ein P(t_e-2)e + sum_ein Etext and enotin P(t_e-2)e\
&gesum_ein E2e + sum_ein P(t_e-2)e \
&gesum_ein E2e - sum_ein Pe \
&gesum_ein E2e - text diameter of T \
endalign$$
The other part of the proof is to show the journey can be as short as $displaystylesum_ein E2e - text diameter of T$, which can be done by an easy induction.
$endgroup$
$begingroup$
Ha! You edited in the converse faster than I could write my comment that it was missing. :)
$endgroup$
– David Richerby
36 mins ago
add a comment |
$begingroup$
Here is a proof rigorous enough that should be simple for you to understand.
Let $T=(V,E)$. Let $j$ be a journey that passes every city, starting at city $s$ and finishing at city $f$. Let $t_e$ is the number of times $j$ goes through edge $e$. Let $P$ be the unique path from $s$ to $f$.
Claim 1: $t_ege 1$.
Proof: If we remove edge $e$ from $T$, $T$ is separated into two trees that are disconnected to each other. If $t_enotge1$, i.e., $j$ does not include $e$, that means $j$ is disconnected, which is false.
Claim 2: $t_ege 2$ if $enotin P$.
Proof. Let $enotin P$. If we remove edge $e$ from $T$, $T$ is separated into two smaller trees that are disconnected to each other. Denote those two trees $T_1$ and $T_2$. Since $P$ is connected, $P$ is in $T_1$ entirely or $T_2$ entirely. That means both $s$ and $f$ are in $T_1$ or both are in $T_2$. Starting at $s$ in one of the smaller trees, $j$ must go to the other smaller tree through $e$ before returning to $f$ through $e$ again.
The total distance of $j$ is $$beginalignsum_ein Et_ee&=sum_ein Pt_ee + sum_ein Etext and enotin Pt_ee\
&=sum_ein E2e + sum_ein P(t_e-2)e + sum_ein Etext and enotin P(t_e-2)e\
&gesum_ein E2e + sum_ein P(t_e-2)e \
&gesum_ein E2e - sum_ein Pe \
&gesum_ein E2e - text diameter of T \
endalign$$
The other part of the proof is to show the journey can be as short as $displaystylesum_ein E2e - text diameter of T$, which can be done by an easy induction.
$endgroup$
$begingroup$
Ha! You edited in the converse faster than I could write my comment that it was missing. :)
$endgroup$
– David Richerby
36 mins ago
add a comment |
$begingroup$
Here is a proof rigorous enough that should be simple for you to understand.
Let $T=(V,E)$. Let $j$ be a journey that passes every city, starting at city $s$ and finishing at city $f$. Let $t_e$ is the number of times $j$ goes through edge $e$. Let $P$ be the unique path from $s$ to $f$.
Claim 1: $t_ege 1$.
Proof: If we remove edge $e$ from $T$, $T$ is separated into two trees that are disconnected to each other. If $t_enotge1$, i.e., $j$ does not include $e$, that means $j$ is disconnected, which is false.
Claim 2: $t_ege 2$ if $enotin P$.
Proof. Let $enotin P$. If we remove edge $e$ from $T$, $T$ is separated into two smaller trees that are disconnected to each other. Denote those two trees $T_1$ and $T_2$. Since $P$ is connected, $P$ is in $T_1$ entirely or $T_2$ entirely. That means both $s$ and $f$ are in $T_1$ or both are in $T_2$. Starting at $s$ in one of the smaller trees, $j$ must go to the other smaller tree through $e$ before returning to $f$ through $e$ again.
The total distance of $j$ is $$beginalignsum_ein Et_ee&=sum_ein Pt_ee + sum_ein Etext and enotin Pt_ee\
&=sum_ein E2e + sum_ein P(t_e-2)e + sum_ein Etext and enotin P(t_e-2)e\
&gesum_ein E2e + sum_ein P(t_e-2)e \
&gesum_ein E2e - sum_ein Pe \
&gesum_ein E2e - text diameter of T \
endalign$$
The other part of the proof is to show the journey can be as short as $displaystylesum_ein E2e - text diameter of T$, which can be done by an easy induction.
$endgroup$
Here is a proof rigorous enough that should be simple for you to understand.
Let $T=(V,E)$. Let $j$ be a journey that passes every city, starting at city $s$ and finishing at city $f$. Let $t_e$ is the number of times $j$ goes through edge $e$. Let $P$ be the unique path from $s$ to $f$.
Claim 1: $t_ege 1$.
Proof: If we remove edge $e$ from $T$, $T$ is separated into two trees that are disconnected to each other. If $t_enotge1$, i.e., $j$ does not include $e$, that means $j$ is disconnected, which is false.
Claim 2: $t_ege 2$ if $enotin P$.
Proof. Let $enotin P$. If we remove edge $e$ from $T$, $T$ is separated into two smaller trees that are disconnected to each other. Denote those two trees $T_1$ and $T_2$. Since $P$ is connected, $P$ is in $T_1$ entirely or $T_2$ entirely. That means both $s$ and $f$ are in $T_1$ or both are in $T_2$. Starting at $s$ in one of the smaller trees, $j$ must go to the other smaller tree through $e$ before returning to $f$ through $e$ again.
The total distance of $j$ is $$beginalignsum_ein Et_ee&=sum_ein Pt_ee + sum_ein Etext and enotin Pt_ee\
&=sum_ein E2e + sum_ein P(t_e-2)e + sum_ein Etext and enotin P(t_e-2)e\
&gesum_ein E2e + sum_ein P(t_e-2)e \
&gesum_ein E2e - sum_ein Pe \
&gesum_ein E2e - text diameter of T \
endalign$$
The other part of the proof is to show the journey can be as short as $displaystylesum_ein E2e - text diameter of T$, which can be done by an easy induction.
answered 41 mins ago
Apass.JackApass.Jack
12.6k1939
12.6k1939
$begingroup$
Ha! You edited in the converse faster than I could write my comment that it was missing. :)
$endgroup$
– David Richerby
36 mins ago
add a comment |
$begingroup$
Ha! You edited in the converse faster than I could write my comment that it was missing. :)
$endgroup$
– David Richerby
36 mins ago
$begingroup$
Ha! You edited in the converse faster than I could write my comment that it was missing. :)
$endgroup$
– David Richerby
36 mins ago
$begingroup$
Ha! You edited in the converse faster than I could write my comment that it was missing. :)
$endgroup$
– David Richerby
36 mins ago
add a comment |
Thanks for contributing an answer to Computer Science 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%2fcs.stackexchange.com%2fquestions%2f105534%2fprove-that-the-total-distance-is-minimised-when-travelling-across-the-longest-p%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