Blind Person Ball Game
up vote
16
down vote
favorite
You are blind and your friend presents you with 6 equal balls of which 3 are red and 3 are green.
You friend challenges you to game to find a green ball.
You must select 3 of the balls and your friend will tell you if they are all green or not. You repeat this as many times as you need to until you can identify a ball as being green.
In a worst case scenario what is the maximum number of submissions of 3 balls needed to then be able to identify a green ball with certainty. Assuming you are playing an optimal game. How do you know there is no better strategy?
mathematics logical-deduction
add a comment |
up vote
16
down vote
favorite
You are blind and your friend presents you with 6 equal balls of which 3 are red and 3 are green.
You friend challenges you to game to find a green ball.
You must select 3 of the balls and your friend will tell you if they are all green or not. You repeat this as many times as you need to until you can identify a ball as being green.
In a worst case scenario what is the maximum number of submissions of 3 balls needed to then be able to identify a green ball with certainty. Assuming you are playing an optimal game. How do you know there is no better strategy?
mathematics logical-deduction
add a comment |
up vote
16
down vote
favorite
up vote
16
down vote
favorite
You are blind and your friend presents you with 6 equal balls of which 3 are red and 3 are green.
You friend challenges you to game to find a green ball.
You must select 3 of the balls and your friend will tell you if they are all green or not. You repeat this as many times as you need to until you can identify a ball as being green.
In a worst case scenario what is the maximum number of submissions of 3 balls needed to then be able to identify a green ball with certainty. Assuming you are playing an optimal game. How do you know there is no better strategy?
mathematics logical-deduction
You are blind and your friend presents you with 6 equal balls of which 3 are red and 3 are green.
You friend challenges you to game to find a green ball.
You must select 3 of the balls and your friend will tell you if they are all green or not. You repeat this as many times as you need to until you can identify a ball as being green.
In a worst case scenario what is the maximum number of submissions of 3 balls needed to then be able to identify a green ball with certainty. Assuming you are playing an optimal game. How do you know there is no better strategy?
mathematics logical-deduction
mathematics logical-deduction
asked Dec 3 at 9:50
Ben Franks
42314
42314
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
15
down vote
accepted
elias's strategy for
10
is optimal.
To see this, note that
there are 20 possible triples, which can be divided into 10 complementary pairs, i.e. each triple is paired with the triple consisting of the other three balls. Now suppose you follow any strategy, and after nine attempts, none of the triples you've tried was the all-green triple. There must be one pair of complementary triples, neither of which has been tried (since there are ten pairs). Either of these two triples could be the all-green triple; since these two cases have no green balls in common, you can't definitively identify a green ball.
add a comment |
up vote
20
down vote
I think I have an answer of
$binom53 = 10$
Approach:
Choose any 5 balls, and ask for every subset of 3 of them.
If none of these triplets are 'all green', that means ball 6 has to be green.
+1 Nice answer.
– hexomino
Dec 3 at 10:10
1
Thanks, but far from being complete. No idea if this is minimal, and if yes, how to prove.
– elias
Dec 3 at 10:11
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: "559"
};
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',
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
},
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%2fpuzzling.stackexchange.com%2fquestions%2f75995%2fblind-person-ball-game%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
up vote
15
down vote
accepted
elias's strategy for
10
is optimal.
To see this, note that
there are 20 possible triples, which can be divided into 10 complementary pairs, i.e. each triple is paired with the triple consisting of the other three balls. Now suppose you follow any strategy, and after nine attempts, none of the triples you've tried was the all-green triple. There must be one pair of complementary triples, neither of which has been tried (since there are ten pairs). Either of these two triples could be the all-green triple; since these two cases have no green balls in common, you can't definitively identify a green ball.
add a comment |
up vote
15
down vote
accepted
elias's strategy for
10
is optimal.
To see this, note that
there are 20 possible triples, which can be divided into 10 complementary pairs, i.e. each triple is paired with the triple consisting of the other three balls. Now suppose you follow any strategy, and after nine attempts, none of the triples you've tried was the all-green triple. There must be one pair of complementary triples, neither of which has been tried (since there are ten pairs). Either of these two triples could be the all-green triple; since these two cases have no green balls in common, you can't definitively identify a green ball.
add a comment |
up vote
15
down vote
accepted
up vote
15
down vote
accepted
elias's strategy for
10
is optimal.
To see this, note that
there are 20 possible triples, which can be divided into 10 complementary pairs, i.e. each triple is paired with the triple consisting of the other three balls. Now suppose you follow any strategy, and after nine attempts, none of the triples you've tried was the all-green triple. There must be one pair of complementary triples, neither of which has been tried (since there are ten pairs). Either of these two triples could be the all-green triple; since these two cases have no green balls in common, you can't definitively identify a green ball.
elias's strategy for
10
is optimal.
To see this, note that
there are 20 possible triples, which can be divided into 10 complementary pairs, i.e. each triple is paired with the triple consisting of the other three balls. Now suppose you follow any strategy, and after nine attempts, none of the triples you've tried was the all-green triple. There must be one pair of complementary triples, neither of which has been tried (since there are ten pairs). Either of these two triples could be the all-green triple; since these two cases have no green balls in common, you can't definitively identify a green ball.
answered Dec 3 at 10:29
Especially Lime
1,536413
1,536413
add a comment |
add a comment |
up vote
20
down vote
I think I have an answer of
$binom53 = 10$
Approach:
Choose any 5 balls, and ask for every subset of 3 of them.
If none of these triplets are 'all green', that means ball 6 has to be green.
+1 Nice answer.
– hexomino
Dec 3 at 10:10
1
Thanks, but far from being complete. No idea if this is minimal, and if yes, how to prove.
– elias
Dec 3 at 10:11
add a comment |
up vote
20
down vote
I think I have an answer of
$binom53 = 10$
Approach:
Choose any 5 balls, and ask for every subset of 3 of them.
If none of these triplets are 'all green', that means ball 6 has to be green.
+1 Nice answer.
– hexomino
Dec 3 at 10:10
1
Thanks, but far from being complete. No idea if this is minimal, and if yes, how to prove.
– elias
Dec 3 at 10:11
add a comment |
up vote
20
down vote
up vote
20
down vote
I think I have an answer of
$binom53 = 10$
Approach:
Choose any 5 balls, and ask for every subset of 3 of them.
If none of these triplets are 'all green', that means ball 6 has to be green.
I think I have an answer of
$binom53 = 10$
Approach:
Choose any 5 balls, and ask for every subset of 3 of them.
If none of these triplets are 'all green', that means ball 6 has to be green.
answered Dec 3 at 10:05
elias
8,70332153
8,70332153
+1 Nice answer.
– hexomino
Dec 3 at 10:10
1
Thanks, but far from being complete. No idea if this is minimal, and if yes, how to prove.
– elias
Dec 3 at 10:11
add a comment |
+1 Nice answer.
– hexomino
Dec 3 at 10:10
1
Thanks, but far from being complete. No idea if this is minimal, and if yes, how to prove.
– elias
Dec 3 at 10:11
+1 Nice answer.
– hexomino
Dec 3 at 10:10
+1 Nice answer.
– hexomino
Dec 3 at 10:10
1
1
Thanks, but far from being complete. No idea if this is minimal, and if yes, how to prove.
– elias
Dec 3 at 10:11
Thanks, but far from being complete. No idea if this is minimal, and if yes, how to prove.
– elias
Dec 3 at 10:11
add a comment |
Thanks for contributing an answer to Puzzling 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%2fpuzzling.stackexchange.com%2fquestions%2f75995%2fblind-person-ball-game%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