If a graph has a chromatic number $k$, then for any color there is a vertex of that color that has as...
Let $G$ a graph and $k= chi(G)$. Prove that for all $k$-colorings of $G$ and for all colors
$i in {1,ldots,k} $, there exists $u in V(G)$ of color $i$ such that for every $j in {1,ldots,k}$ $i$, there exists $v in N(u)$ of color $j$.
What I have to show is that for every color of the graph, there is always a vertex of that color so that it is a neighbor of all other colors.
I have tried to prove by contradiction. The contradiction would occur in that if there is no vertex for which this would be fulfilled then the chromatic number would be smaller. I start by saying "Let $C_{1}$ be the set of vertices of color graph $1$, so let's suppose that ..." and there's the problem, I really do not know whether to suppose that there is a vertex that has all colors as neighbors except him same and another different, or that all the vertices in $C_{1}$ fulfil this property, or if some, etc, I am totally confused.
The other way is by induction, the base step would be for two or more (considering that the graph is not a single vertex) but I do not know how to use the induction hypothesis to prove the case of $k + 1$ colors.
I would appreciate any help.
graph-theory coloring
add a comment |
Let $G$ a graph and $k= chi(G)$. Prove that for all $k$-colorings of $G$ and for all colors
$i in {1,ldots,k} $, there exists $u in V(G)$ of color $i$ such that for every $j in {1,ldots,k}$ $i$, there exists $v in N(u)$ of color $j$.
What I have to show is that for every color of the graph, there is always a vertex of that color so that it is a neighbor of all other colors.
I have tried to prove by contradiction. The contradiction would occur in that if there is no vertex for which this would be fulfilled then the chromatic number would be smaller. I start by saying "Let $C_{1}$ be the set of vertices of color graph $1$, so let's suppose that ..." and there's the problem, I really do not know whether to suppose that there is a vertex that has all colors as neighbors except him same and another different, or that all the vertices in $C_{1}$ fulfil this property, or if some, etc, I am totally confused.
The other way is by induction, the base step would be for two or more (considering that the graph is not a single vertex) but I do not know how to use the induction hypothesis to prove the case of $k + 1$ colors.
I would appreciate any help.
graph-theory coloring
add a comment |
Let $G$ a graph and $k= chi(G)$. Prove that for all $k$-colorings of $G$ and for all colors
$i in {1,ldots,k} $, there exists $u in V(G)$ of color $i$ such that for every $j in {1,ldots,k}$ $i$, there exists $v in N(u)$ of color $j$.
What I have to show is that for every color of the graph, there is always a vertex of that color so that it is a neighbor of all other colors.
I have tried to prove by contradiction. The contradiction would occur in that if there is no vertex for which this would be fulfilled then the chromatic number would be smaller. I start by saying "Let $C_{1}$ be the set of vertices of color graph $1$, so let's suppose that ..." and there's the problem, I really do not know whether to suppose that there is a vertex that has all colors as neighbors except him same and another different, or that all the vertices in $C_{1}$ fulfil this property, or if some, etc, I am totally confused.
The other way is by induction, the base step would be for two or more (considering that the graph is not a single vertex) but I do not know how to use the induction hypothesis to prove the case of $k + 1$ colors.
I would appreciate any help.
graph-theory coloring
Let $G$ a graph and $k= chi(G)$. Prove that for all $k$-colorings of $G$ and for all colors
$i in {1,ldots,k} $, there exists $u in V(G)$ of color $i$ such that for every $j in {1,ldots,k}$ $i$, there exists $v in N(u)$ of color $j$.
What I have to show is that for every color of the graph, there is always a vertex of that color so that it is a neighbor of all other colors.
I have tried to prove by contradiction. The contradiction would occur in that if there is no vertex for which this would be fulfilled then the chromatic number would be smaller. I start by saying "Let $C_{1}$ be the set of vertices of color graph $1$, so let's suppose that ..." and there's the problem, I really do not know whether to suppose that there is a vertex that has all colors as neighbors except him same and another different, or that all the vertices in $C_{1}$ fulfil this property, or if some, etc, I am totally confused.
The other way is by induction, the base step would be for two or more (considering that the graph is not a single vertex) but I do not know how to use the induction hypothesis to prove the case of $k + 1$ colors.
I would appreciate any help.
graph-theory coloring
graph-theory coloring
edited Nov 19 '18 at 3:21
asked Nov 18 '18 at 21:10
Jazmín Jones
519
519
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Let $G$ be a graph with $chi(G)=k$. Pick a vertex $v$ of colour $i$, then suppose all its neighbour is not of the other colors, then there is a color $ineq j in {1,2...k}$ that hasen't been used by the neighbours of $v$. We can then color $v$ color $j$. And since we can do it for all vertices of colour $i$(because we assume there is no vertices of colour $i$ whose neighbours are all of the other colors), we can just replace vertices with color $i$ with some other colours in ${1,2,...,k}/ {i}$. We can do it because vertices of the same colour are not adjacent hence they won't affect each other. Well then that says $chi(G)<k$. Contradiction! Hope I didn't made any mistake... I'm learning as well.
add a comment |
First, observe that there is a small glitch in the statement of the problem. "Prove that for all $k$-colorings of $G$ and for all colors $i in {1,ldots,k} setminus {i}$,..." should not have the "$setminus {i}$" at the end. The claim is about every $k$-coloring and every color.
Next, the idea of proving the claim by contradiction is a good one, as shown in @mathnoob's answer. You were on the right track, but then got confused. This is likely due to the fact that the claim you try to prove has several quantifiers in it: for all colorings, for all colors, there exists a vertex, such that for every other color....
In cases like these, it's useful, especially if you are realtively new to proofs, to start by writing down the negation of the claim you want to prove. Let's do it for the problem at hand:
Suppose there exist a $k$-coloring of $G$ and a color $i in {1,ldots,k}$ such that, for every vertex $u in V(G)$ of color $i$, there exists a color $j in {1,ldots,k} setminus {i}$ such that no vertex $v in N(u)$ has color $j$.
This unambiguously states the assumption that is supposed to lead to a clash with the assumption that $chi(G) = k$. In fact, as pointed out in @mathnoob's answer, you can change the color of $u$ from $i$ to $j$ while preserving a valid coloring. Once this has been done for all vertices of color $i$, the resulting coloring has $k-1$ colors: contradiction!
Thanks!!! I corrected it
– Jazmín Jones
Nov 19 '18 at 4:14
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%2f3004125%2fif-a-graph-has-a-chromatic-number-k-then-for-any-color-there-is-a-vertex-of-t%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
Let $G$ be a graph with $chi(G)=k$. Pick a vertex $v$ of colour $i$, then suppose all its neighbour is not of the other colors, then there is a color $ineq j in {1,2...k}$ that hasen't been used by the neighbours of $v$. We can then color $v$ color $j$. And since we can do it for all vertices of colour $i$(because we assume there is no vertices of colour $i$ whose neighbours are all of the other colors), we can just replace vertices with color $i$ with some other colours in ${1,2,...,k}/ {i}$. We can do it because vertices of the same colour are not adjacent hence they won't affect each other. Well then that says $chi(G)<k$. Contradiction! Hope I didn't made any mistake... I'm learning as well.
add a comment |
Let $G$ be a graph with $chi(G)=k$. Pick a vertex $v$ of colour $i$, then suppose all its neighbour is not of the other colors, then there is a color $ineq j in {1,2...k}$ that hasen't been used by the neighbours of $v$. We can then color $v$ color $j$. And since we can do it for all vertices of colour $i$(because we assume there is no vertices of colour $i$ whose neighbours are all of the other colors), we can just replace vertices with color $i$ with some other colours in ${1,2,...,k}/ {i}$. We can do it because vertices of the same colour are not adjacent hence they won't affect each other. Well then that says $chi(G)<k$. Contradiction! Hope I didn't made any mistake... I'm learning as well.
add a comment |
Let $G$ be a graph with $chi(G)=k$. Pick a vertex $v$ of colour $i$, then suppose all its neighbour is not of the other colors, then there is a color $ineq j in {1,2...k}$ that hasen't been used by the neighbours of $v$. We can then color $v$ color $j$. And since we can do it for all vertices of colour $i$(because we assume there is no vertices of colour $i$ whose neighbours are all of the other colors), we can just replace vertices with color $i$ with some other colours in ${1,2,...,k}/ {i}$. We can do it because vertices of the same colour are not adjacent hence they won't affect each other. Well then that says $chi(G)<k$. Contradiction! Hope I didn't made any mistake... I'm learning as well.
Let $G$ be a graph with $chi(G)=k$. Pick a vertex $v$ of colour $i$, then suppose all its neighbour is not of the other colors, then there is a color $ineq j in {1,2...k}$ that hasen't been used by the neighbours of $v$. We can then color $v$ color $j$. And since we can do it for all vertices of colour $i$(because we assume there is no vertices of colour $i$ whose neighbours are all of the other colors), we can just replace vertices with color $i$ with some other colours in ${1,2,...,k}/ {i}$. We can do it because vertices of the same colour are not adjacent hence they won't affect each other. Well then that says $chi(G)<k$. Contradiction! Hope I didn't made any mistake... I'm learning as well.
edited Nov 18 '18 at 22:12
answered Nov 18 '18 at 22:06
mathnoob
1,799422
1,799422
add a comment |
add a comment |
First, observe that there is a small glitch in the statement of the problem. "Prove that for all $k$-colorings of $G$ and for all colors $i in {1,ldots,k} setminus {i}$,..." should not have the "$setminus {i}$" at the end. The claim is about every $k$-coloring and every color.
Next, the idea of proving the claim by contradiction is a good one, as shown in @mathnoob's answer. You were on the right track, but then got confused. This is likely due to the fact that the claim you try to prove has several quantifiers in it: for all colorings, for all colors, there exists a vertex, such that for every other color....
In cases like these, it's useful, especially if you are realtively new to proofs, to start by writing down the negation of the claim you want to prove. Let's do it for the problem at hand:
Suppose there exist a $k$-coloring of $G$ and a color $i in {1,ldots,k}$ such that, for every vertex $u in V(G)$ of color $i$, there exists a color $j in {1,ldots,k} setminus {i}$ such that no vertex $v in N(u)$ has color $j$.
This unambiguously states the assumption that is supposed to lead to a clash with the assumption that $chi(G) = k$. In fact, as pointed out in @mathnoob's answer, you can change the color of $u$ from $i$ to $j$ while preserving a valid coloring. Once this has been done for all vertices of color $i$, the resulting coloring has $k-1$ colors: contradiction!
Thanks!!! I corrected it
– Jazmín Jones
Nov 19 '18 at 4:14
add a comment |
First, observe that there is a small glitch in the statement of the problem. "Prove that for all $k$-colorings of $G$ and for all colors $i in {1,ldots,k} setminus {i}$,..." should not have the "$setminus {i}$" at the end. The claim is about every $k$-coloring and every color.
Next, the idea of proving the claim by contradiction is a good one, as shown in @mathnoob's answer. You were on the right track, but then got confused. This is likely due to the fact that the claim you try to prove has several quantifiers in it: for all colorings, for all colors, there exists a vertex, such that for every other color....
In cases like these, it's useful, especially if you are realtively new to proofs, to start by writing down the negation of the claim you want to prove. Let's do it for the problem at hand:
Suppose there exist a $k$-coloring of $G$ and a color $i in {1,ldots,k}$ such that, for every vertex $u in V(G)$ of color $i$, there exists a color $j in {1,ldots,k} setminus {i}$ such that no vertex $v in N(u)$ has color $j$.
This unambiguously states the assumption that is supposed to lead to a clash with the assumption that $chi(G) = k$. In fact, as pointed out in @mathnoob's answer, you can change the color of $u$ from $i$ to $j$ while preserving a valid coloring. Once this has been done for all vertices of color $i$, the resulting coloring has $k-1$ colors: contradiction!
Thanks!!! I corrected it
– Jazmín Jones
Nov 19 '18 at 4:14
add a comment |
First, observe that there is a small glitch in the statement of the problem. "Prove that for all $k$-colorings of $G$ and for all colors $i in {1,ldots,k} setminus {i}$,..." should not have the "$setminus {i}$" at the end. The claim is about every $k$-coloring and every color.
Next, the idea of proving the claim by contradiction is a good one, as shown in @mathnoob's answer. You were on the right track, but then got confused. This is likely due to the fact that the claim you try to prove has several quantifiers in it: for all colorings, for all colors, there exists a vertex, such that for every other color....
In cases like these, it's useful, especially if you are realtively new to proofs, to start by writing down the negation of the claim you want to prove. Let's do it for the problem at hand:
Suppose there exist a $k$-coloring of $G$ and a color $i in {1,ldots,k}$ such that, for every vertex $u in V(G)$ of color $i$, there exists a color $j in {1,ldots,k} setminus {i}$ such that no vertex $v in N(u)$ has color $j$.
This unambiguously states the assumption that is supposed to lead to a clash with the assumption that $chi(G) = k$. In fact, as pointed out in @mathnoob's answer, you can change the color of $u$ from $i$ to $j$ while preserving a valid coloring. Once this has been done for all vertices of color $i$, the resulting coloring has $k-1$ colors: contradiction!
First, observe that there is a small glitch in the statement of the problem. "Prove that for all $k$-colorings of $G$ and for all colors $i in {1,ldots,k} setminus {i}$,..." should not have the "$setminus {i}$" at the end. The claim is about every $k$-coloring and every color.
Next, the idea of proving the claim by contradiction is a good one, as shown in @mathnoob's answer. You were on the right track, but then got confused. This is likely due to the fact that the claim you try to prove has several quantifiers in it: for all colorings, for all colors, there exists a vertex, such that for every other color....
In cases like these, it's useful, especially if you are realtively new to proofs, to start by writing down the negation of the claim you want to prove. Let's do it for the problem at hand:
Suppose there exist a $k$-coloring of $G$ and a color $i in {1,ldots,k}$ such that, for every vertex $u in V(G)$ of color $i$, there exists a color $j in {1,ldots,k} setminus {i}$ such that no vertex $v in N(u)$ has color $j$.
This unambiguously states the assumption that is supposed to lead to a clash with the assumption that $chi(G) = k$. In fact, as pointed out in @mathnoob's answer, you can change the color of $u$ from $i$ to $j$ while preserving a valid coloring. Once this has been done for all vertices of color $i$, the resulting coloring has $k-1$ colors: contradiction!
edited Nov 18 '18 at 22:52
answered Nov 18 '18 at 22:45
Fabio Somenzi
6,41321221
6,41321221
Thanks!!! I corrected it
– Jazmín Jones
Nov 19 '18 at 4:14
add a comment |
Thanks!!! I corrected it
– Jazmín Jones
Nov 19 '18 at 4:14
Thanks!!! I corrected it
– Jazmín Jones
Nov 19 '18 at 4:14
Thanks!!! I corrected it
– Jazmín Jones
Nov 19 '18 at 4:14
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
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%2f3004125%2fif-a-graph-has-a-chromatic-number-k-then-for-any-color-there-is-a-vertex-of-t%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