How to prove that the max edge coloring is 2D - 1 (where D is max vertex degree)?
$begingroup$
I have this problem that is giving me fits. This problem seems similar to proving that the max coloring of vertices, where the max vertex degree is D, is D + 1.
We cannot have two edges that share the same endpoint be the same color.
My intuition is that we have to use induction on the number of edges. However, I'm not sure how to piece it together with the endpoint vertex involved.
Does anyone know how to approach this type of problem?
graph-theory coloring
$endgroup$
add a comment |
$begingroup$
I have this problem that is giving me fits. This problem seems similar to proving that the max coloring of vertices, where the max vertex degree is D, is D + 1.
We cannot have two edges that share the same endpoint be the same color.
My intuition is that we have to use induction on the number of edges. However, I'm not sure how to piece it together with the endpoint vertex involved.
Does anyone know how to approach this type of problem?
graph-theory coloring
$endgroup$
$begingroup$
Each edge "touches" 2 vertices, and hence at most 2D-1 edges (since an edge doesn't touch itself). Does this help?
$endgroup$
– Don Thousand
Dec 4 '18 at 17:51
$begingroup$
The "max edge coloring" is the number of edges, because you can give every edge a different color.
$endgroup$
– bof
Dec 4 '18 at 23:04
add a comment |
$begingroup$
I have this problem that is giving me fits. This problem seems similar to proving that the max coloring of vertices, where the max vertex degree is D, is D + 1.
We cannot have two edges that share the same endpoint be the same color.
My intuition is that we have to use induction on the number of edges. However, I'm not sure how to piece it together with the endpoint vertex involved.
Does anyone know how to approach this type of problem?
graph-theory coloring
$endgroup$
I have this problem that is giving me fits. This problem seems similar to proving that the max coloring of vertices, where the max vertex degree is D, is D + 1.
We cannot have two edges that share the same endpoint be the same color.
My intuition is that we have to use induction on the number of edges. However, I'm not sure how to piece it together with the endpoint vertex involved.
Does anyone know how to approach this type of problem?
graph-theory coloring
graph-theory coloring
asked Dec 4 '18 at 17:43
Mr.MipsMr.Mips
185
185
$begingroup$
Each edge "touches" 2 vertices, and hence at most 2D-1 edges (since an edge doesn't touch itself). Does this help?
$endgroup$
– Don Thousand
Dec 4 '18 at 17:51
$begingroup$
The "max edge coloring" is the number of edges, because you can give every edge a different color.
$endgroup$
– bof
Dec 4 '18 at 23:04
add a comment |
$begingroup$
Each edge "touches" 2 vertices, and hence at most 2D-1 edges (since an edge doesn't touch itself). Does this help?
$endgroup$
– Don Thousand
Dec 4 '18 at 17:51
$begingroup$
The "max edge coloring" is the number of edges, because you can give every edge a different color.
$endgroup$
– bof
Dec 4 '18 at 23:04
$begingroup$
Each edge "touches" 2 vertices, and hence at most 2D-1 edges (since an edge doesn't touch itself). Does this help?
$endgroup$
– Don Thousand
Dec 4 '18 at 17:51
$begingroup$
Each edge "touches" 2 vertices, and hence at most 2D-1 edges (since an edge doesn't touch itself). Does this help?
$endgroup$
– Don Thousand
Dec 4 '18 at 17:51
$begingroup$
The "max edge coloring" is the number of edges, because you can give every edge a different color.
$endgroup$
– bof
Dec 4 '18 at 23:04
$begingroup$
The "max edge coloring" is the number of edges, because you can give every edge a different color.
$endgroup$
– bof
Dec 4 '18 at 23:04
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
I think the statement is $chi'(G) leq 2triangle(G)-1$. This can be done using induction on the number of edges of a graph.
So
Base case: Let $G$ be a graph such that $|E(G)|=1$, then $triangle(G) =1$,where $triangle(G)$ is the maximum degree of $G$. so then $chi'(G)=1leq2*triangle(G)-1$.
Inductive step: Suppose the claim is true for all graph such that $|E(G)|=n$, then now consider a graph $G$ such that $|E(G)|=n+1$. Pick an arbitrary edge $uv=ein E(G)$, and consider $G'=G-e$. $chi'(G')leq 2triangle(G')-1 leq 2triangle(G)-1$ by induction
hypothesis. Now $deg(u) leq triangle(G)-1$ and $deg(v) leq triangle(G)-1$. So we can color $e$ using one more color different than all color on the edges incident to $u$ and $v$. So we can use one of $2triangle(G)-1$ color to color $e$. so $chi(G) leq 2triangle(G)-1$. I hope this is correct.
$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%2f3025887%2fhow-to-prove-that-the-max-edge-coloring-is-2d-1-where-d-is-max-vertex-degree%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$
I think the statement is $chi'(G) leq 2triangle(G)-1$. This can be done using induction on the number of edges of a graph.
So
Base case: Let $G$ be a graph such that $|E(G)|=1$, then $triangle(G) =1$,where $triangle(G)$ is the maximum degree of $G$. so then $chi'(G)=1leq2*triangle(G)-1$.
Inductive step: Suppose the claim is true for all graph such that $|E(G)|=n$, then now consider a graph $G$ such that $|E(G)|=n+1$. Pick an arbitrary edge $uv=ein E(G)$, and consider $G'=G-e$. $chi'(G')leq 2triangle(G')-1 leq 2triangle(G)-1$ by induction
hypothesis. Now $deg(u) leq triangle(G)-1$ and $deg(v) leq triangle(G)-1$. So we can color $e$ using one more color different than all color on the edges incident to $u$ and $v$. So we can use one of $2triangle(G)-1$ color to color $e$. so $chi(G) leq 2triangle(G)-1$. I hope this is correct.
$endgroup$
add a comment |
$begingroup$
I think the statement is $chi'(G) leq 2triangle(G)-1$. This can be done using induction on the number of edges of a graph.
So
Base case: Let $G$ be a graph such that $|E(G)|=1$, then $triangle(G) =1$,where $triangle(G)$ is the maximum degree of $G$. so then $chi'(G)=1leq2*triangle(G)-1$.
Inductive step: Suppose the claim is true for all graph such that $|E(G)|=n$, then now consider a graph $G$ such that $|E(G)|=n+1$. Pick an arbitrary edge $uv=ein E(G)$, and consider $G'=G-e$. $chi'(G')leq 2triangle(G')-1 leq 2triangle(G)-1$ by induction
hypothesis. Now $deg(u) leq triangle(G)-1$ and $deg(v) leq triangle(G)-1$. So we can color $e$ using one more color different than all color on the edges incident to $u$ and $v$. So we can use one of $2triangle(G)-1$ color to color $e$. so $chi(G) leq 2triangle(G)-1$. I hope this is correct.
$endgroup$
add a comment |
$begingroup$
I think the statement is $chi'(G) leq 2triangle(G)-1$. This can be done using induction on the number of edges of a graph.
So
Base case: Let $G$ be a graph such that $|E(G)|=1$, then $triangle(G) =1$,where $triangle(G)$ is the maximum degree of $G$. so then $chi'(G)=1leq2*triangle(G)-1$.
Inductive step: Suppose the claim is true for all graph such that $|E(G)|=n$, then now consider a graph $G$ such that $|E(G)|=n+1$. Pick an arbitrary edge $uv=ein E(G)$, and consider $G'=G-e$. $chi'(G')leq 2triangle(G')-1 leq 2triangle(G)-1$ by induction
hypothesis. Now $deg(u) leq triangle(G)-1$ and $deg(v) leq triangle(G)-1$. So we can color $e$ using one more color different than all color on the edges incident to $u$ and $v$. So we can use one of $2triangle(G)-1$ color to color $e$. so $chi(G) leq 2triangle(G)-1$. I hope this is correct.
$endgroup$
I think the statement is $chi'(G) leq 2triangle(G)-1$. This can be done using induction on the number of edges of a graph.
So
Base case: Let $G$ be a graph such that $|E(G)|=1$, then $triangle(G) =1$,where $triangle(G)$ is the maximum degree of $G$. so then $chi'(G)=1leq2*triangle(G)-1$.
Inductive step: Suppose the claim is true for all graph such that $|E(G)|=n$, then now consider a graph $G$ such that $|E(G)|=n+1$. Pick an arbitrary edge $uv=ein E(G)$, and consider $G'=G-e$. $chi'(G')leq 2triangle(G')-1 leq 2triangle(G)-1$ by induction
hypothesis. Now $deg(u) leq triangle(G)-1$ and $deg(v) leq triangle(G)-1$. So we can color $e$ using one more color different than all color on the edges incident to $u$ and $v$. So we can use one of $2triangle(G)-1$ color to color $e$. so $chi(G) leq 2triangle(G)-1$. I hope this is correct.
answered Dec 4 '18 at 22:59
nafhgoodnafhgood
1,805422
1,805422
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%2f3025887%2fhow-to-prove-that-the-max-edge-coloring-is-2d-1-where-d-is-max-vertex-degree%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$
Each edge "touches" 2 vertices, and hence at most 2D-1 edges (since an edge doesn't touch itself). Does this help?
$endgroup$
– Don Thousand
Dec 4 '18 at 17:51
$begingroup$
The "max edge coloring" is the number of edges, because you can give every edge a different color.
$endgroup$
– bof
Dec 4 '18 at 23:04