Why can't I split combinations/events?
$begingroup$
I was recently struggling with a problem that read as so:
A club has 30 members work in business and 30 members that are professors. In how many ways can a committee of 8 be selected that has at least 3 in business and at least 3 professors?
For my answer, I first took care of the requirements, then grouped the rest together to get $$binom{30}{3}binom{30}{3}binom{54}{2}$$
Which ended up being wildly wrong from the correct answer which was
$$binom{30}{5}binom{30}{3}*2 +binom{30}{4}binom{30}{4}$$
I once again tried splitting the last combination by case to get
$$binom{30}{3}binom{30}{3}(binom{27}{1}binom{27}{1}+binom{27}{2}+binom{27}{2})$$
But this just turned out to be the same as my previous answer. After doing some research, I came to the conclusion that my answers were larger than the correct one because I was splitting the event into many smaller sections, and in doing so, overcounting cases, which is why
$$binom{10}{3}neq binom{10}{2}binom{8}1$$
I can accept this as a general principle, as the numbers aren't equal. However, it doesn't really logically make sense to me. What am I actually overcounting by splitting up a combination such as $binom{10}{3}$ into $binom{10}{1}binom{9}{1}binom{8}{1}$? Why does splitting and adding events together have no effect?
combinatorics
$endgroup$
add a comment |
$begingroup$
I was recently struggling with a problem that read as so:
A club has 30 members work in business and 30 members that are professors. In how many ways can a committee of 8 be selected that has at least 3 in business and at least 3 professors?
For my answer, I first took care of the requirements, then grouped the rest together to get $$binom{30}{3}binom{30}{3}binom{54}{2}$$
Which ended up being wildly wrong from the correct answer which was
$$binom{30}{5}binom{30}{3}*2 +binom{30}{4}binom{30}{4}$$
I once again tried splitting the last combination by case to get
$$binom{30}{3}binom{30}{3}(binom{27}{1}binom{27}{1}+binom{27}{2}+binom{27}{2})$$
But this just turned out to be the same as my previous answer. After doing some research, I came to the conclusion that my answers were larger than the correct one because I was splitting the event into many smaller sections, and in doing so, overcounting cases, which is why
$$binom{10}{3}neq binom{10}{2}binom{8}1$$
I can accept this as a general principle, as the numbers aren't equal. However, it doesn't really logically make sense to me. What am I actually overcounting by splitting up a combination such as $binom{10}{3}$ into $binom{10}{1}binom{9}{1}binom{8}{1}$? Why does splitting and adding events together have no effect?
combinatorics
$endgroup$
add a comment |
$begingroup$
I was recently struggling with a problem that read as so:
A club has 30 members work in business and 30 members that are professors. In how many ways can a committee of 8 be selected that has at least 3 in business and at least 3 professors?
For my answer, I first took care of the requirements, then grouped the rest together to get $$binom{30}{3}binom{30}{3}binom{54}{2}$$
Which ended up being wildly wrong from the correct answer which was
$$binom{30}{5}binom{30}{3}*2 +binom{30}{4}binom{30}{4}$$
I once again tried splitting the last combination by case to get
$$binom{30}{3}binom{30}{3}(binom{27}{1}binom{27}{1}+binom{27}{2}+binom{27}{2})$$
But this just turned out to be the same as my previous answer. After doing some research, I came to the conclusion that my answers were larger than the correct one because I was splitting the event into many smaller sections, and in doing so, overcounting cases, which is why
$$binom{10}{3}neq binom{10}{2}binom{8}1$$
I can accept this as a general principle, as the numbers aren't equal. However, it doesn't really logically make sense to me. What am I actually overcounting by splitting up a combination such as $binom{10}{3}$ into $binom{10}{1}binom{9}{1}binom{8}{1}$? Why does splitting and adding events together have no effect?
combinatorics
$endgroup$
I was recently struggling with a problem that read as so:
A club has 30 members work in business and 30 members that are professors. In how many ways can a committee of 8 be selected that has at least 3 in business and at least 3 professors?
For my answer, I first took care of the requirements, then grouped the rest together to get $$binom{30}{3}binom{30}{3}binom{54}{2}$$
Which ended up being wildly wrong from the correct answer which was
$$binom{30}{5}binom{30}{3}*2 +binom{30}{4}binom{30}{4}$$
I once again tried splitting the last combination by case to get
$$binom{30}{3}binom{30}{3}(binom{27}{1}binom{27}{1}+binom{27}{2}+binom{27}{2})$$
But this just turned out to be the same as my previous answer. After doing some research, I came to the conclusion that my answers were larger than the correct one because I was splitting the event into many smaller sections, and in doing so, overcounting cases, which is why
$$binom{10}{3}neq binom{10}{2}binom{8}1$$
I can accept this as a general principle, as the numbers aren't equal. However, it doesn't really logically make sense to me. What am I actually overcounting by splitting up a combination such as $binom{10}{3}$ into $binom{10}{1}binom{9}{1}binom{8}{1}$? Why does splitting and adding events together have no effect?
combinatorics
combinatorics
asked Jan 20 at 8:03
CharlesCharles
211
211
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
Let $b_1,dots, b_{30}$ be the business men and $p_1,dots, p_{30}$ the professors and consider the committee $b_1,b_2,b_3,b_4,p_1,p_2,p_3,p_4$. By using the formula $$binom{30}{3}binom{30}{3}binom{54}{2}$$
you will overcount that committee more than one time: one if you first choose the subsets ${b_1,b_2,b_3}$ and ${p_1,p_2,p_3}$ and then $b_4$ and $p_4$ among the remaining $54$ members, AND another time if you first choose the subsets ${b_1,b_2,b_4}$ and ${p_1,p_2,p_4}$ and then $b_3$ and $p_3$ among the remaining $54$ members. Actually you will overcount it $4cdot 4=16$ times.
Instead consider the admissible compositions of the committe: $8=3+5=4+4=5+3$ where the first number is the number of businessmen and the second one the number of professors in the committee. Then the number of such committees is
$$binom{30}{3}binom{30}{5} +binom{30}{4}binom{30}{4}+binom{30}{5}binom{30}{3}.$$
$endgroup$
$begingroup$
@drhab Thanks!!
$endgroup$
– Robert Z
Jan 20 at 8:22
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%2f3080305%2fwhy-cant-i-split-combinations-events%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$
Let $b_1,dots, b_{30}$ be the business men and $p_1,dots, p_{30}$ the professors and consider the committee $b_1,b_2,b_3,b_4,p_1,p_2,p_3,p_4$. By using the formula $$binom{30}{3}binom{30}{3}binom{54}{2}$$
you will overcount that committee more than one time: one if you first choose the subsets ${b_1,b_2,b_3}$ and ${p_1,p_2,p_3}$ and then $b_4$ and $p_4$ among the remaining $54$ members, AND another time if you first choose the subsets ${b_1,b_2,b_4}$ and ${p_1,p_2,p_4}$ and then $b_3$ and $p_3$ among the remaining $54$ members. Actually you will overcount it $4cdot 4=16$ times.
Instead consider the admissible compositions of the committe: $8=3+5=4+4=5+3$ where the first number is the number of businessmen and the second one the number of professors in the committee. Then the number of such committees is
$$binom{30}{3}binom{30}{5} +binom{30}{4}binom{30}{4}+binom{30}{5}binom{30}{3}.$$
$endgroup$
$begingroup$
@drhab Thanks!!
$endgroup$
– Robert Z
Jan 20 at 8:22
add a comment |
$begingroup$
Let $b_1,dots, b_{30}$ be the business men and $p_1,dots, p_{30}$ the professors and consider the committee $b_1,b_2,b_3,b_4,p_1,p_2,p_3,p_4$. By using the formula $$binom{30}{3}binom{30}{3}binom{54}{2}$$
you will overcount that committee more than one time: one if you first choose the subsets ${b_1,b_2,b_3}$ and ${p_1,p_2,p_3}$ and then $b_4$ and $p_4$ among the remaining $54$ members, AND another time if you first choose the subsets ${b_1,b_2,b_4}$ and ${p_1,p_2,p_4}$ and then $b_3$ and $p_3$ among the remaining $54$ members. Actually you will overcount it $4cdot 4=16$ times.
Instead consider the admissible compositions of the committe: $8=3+5=4+4=5+3$ where the first number is the number of businessmen and the second one the number of professors in the committee. Then the number of such committees is
$$binom{30}{3}binom{30}{5} +binom{30}{4}binom{30}{4}+binom{30}{5}binom{30}{3}.$$
$endgroup$
$begingroup$
@drhab Thanks!!
$endgroup$
– Robert Z
Jan 20 at 8:22
add a comment |
$begingroup$
Let $b_1,dots, b_{30}$ be the business men and $p_1,dots, p_{30}$ the professors and consider the committee $b_1,b_2,b_3,b_4,p_1,p_2,p_3,p_4$. By using the formula $$binom{30}{3}binom{30}{3}binom{54}{2}$$
you will overcount that committee more than one time: one if you first choose the subsets ${b_1,b_2,b_3}$ and ${p_1,p_2,p_3}$ and then $b_4$ and $p_4$ among the remaining $54$ members, AND another time if you first choose the subsets ${b_1,b_2,b_4}$ and ${p_1,p_2,p_4}$ and then $b_3$ and $p_3$ among the remaining $54$ members. Actually you will overcount it $4cdot 4=16$ times.
Instead consider the admissible compositions of the committe: $8=3+5=4+4=5+3$ where the first number is the number of businessmen and the second one the number of professors in the committee. Then the number of such committees is
$$binom{30}{3}binom{30}{5} +binom{30}{4}binom{30}{4}+binom{30}{5}binom{30}{3}.$$
$endgroup$
Let $b_1,dots, b_{30}$ be the business men and $p_1,dots, p_{30}$ the professors and consider the committee $b_1,b_2,b_3,b_4,p_1,p_2,p_3,p_4$. By using the formula $$binom{30}{3}binom{30}{3}binom{54}{2}$$
you will overcount that committee more than one time: one if you first choose the subsets ${b_1,b_2,b_3}$ and ${p_1,p_2,p_3}$ and then $b_4$ and $p_4$ among the remaining $54$ members, AND another time if you first choose the subsets ${b_1,b_2,b_4}$ and ${p_1,p_2,p_4}$ and then $b_3$ and $p_3$ among the remaining $54$ members. Actually you will overcount it $4cdot 4=16$ times.
Instead consider the admissible compositions of the committe: $8=3+5=4+4=5+3$ where the first number is the number of businessmen and the second one the number of professors in the committee. Then the number of such committees is
$$binom{30}{3}binom{30}{5} +binom{30}{4}binom{30}{4}+binom{30}{5}binom{30}{3}.$$
edited Jan 20 at 8:22
answered Jan 20 at 8:14
Robert ZRobert Z
98.3k1067139
98.3k1067139
$begingroup$
@drhab Thanks!!
$endgroup$
– Robert Z
Jan 20 at 8:22
add a comment |
$begingroup$
@drhab Thanks!!
$endgroup$
– Robert Z
Jan 20 at 8:22
$begingroup$
@drhab Thanks!!
$endgroup$
– Robert Z
Jan 20 at 8:22
$begingroup$
@drhab Thanks!!
$endgroup$
– Robert Z
Jan 20 at 8:22
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%2f3080305%2fwhy-cant-i-split-combinations-events%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