Number of ways in which we can select non-intersecting couples from $n$ elements Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Number of ways of choosing $m$ objects with replacement from $n$ objectsWhat is the formula for combinations with identical elements?Number of ways of sorting distinct elements into 4 setsHow many ways of selecting from identical pairs?From set with n elements how many ways to select two disjoint subsets of size k and r?Permutations/combinations, number of elements and waysFind the number of ways of choosing $r$ non-overlapping consecutive pairs of integers from the set $S=1,2, …, n$.How many ways can $N$ different people select from $k$ different options such that no two people select the same option and $k>N$?Number of ways to select subsets from a set of equal elements that have difference between partitions as 0Number of ways to insert $kin[n]$ identical elements to two $n$ long lists
Antler Helmet: Can it work?
Strange behaviour of Check
Problem when applying foreach loop
Does a C shift expression have unsigned type? Why would Splint warn about a right-shift?
What is the electric potential inside a point charge?
How are presidential pardons supposed to be used?
When is phishing education going too far?
How do you clear the ApexPages.getMessages() collection in a test?
Is above average number of years spent on PhD considered a red flag in future academia or industry positions?
Array/tabular for long multiplication
Can the prologue be the backstory of your main character?
What would be Julian Assange's expected punishment, on the current English criminal law?
Fishing simulator
What LEGO pieces have "real-world" functionality?
Why is "Captain Marvel" translated as male in Portugal?
New Order #5: where Fibonacci and Beatty meet at Wythoff
Estimated State payment too big --> money back; + 2018 Tax Reform
Blender game recording at the wrong time
How do I automatically answer y in bash script?
Determine whether f is a function, an injection, a surjection
Can a zero nonce be safely used with AES-GCM if the key is random and never used again?
Writing Thesis: Copying from published papers
Is there folklore associating late breastfeeding with low intelligence and/or gullibility?
Passing functions in C++
Number of ways in which we can select non-intersecting couples from $n$ elements
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Number of ways of choosing $m$ objects with replacement from $n$ objectsWhat is the formula for combinations with identical elements?Number of ways of sorting distinct elements into 4 setsHow many ways of selecting from identical pairs?From set with n elements how many ways to select two disjoint subsets of size k and r?Permutations/combinations, number of elements and waysFind the number of ways of choosing $r$ non-overlapping consecutive pairs of integers from the set $S=1,2, …, n$.How many ways can $N$ different people select from $k$ different options such that no two people select the same option and $k>N$?Number of ways to select subsets from a set of equal elements that have difference between partitions as 0Number of ways to insert $kin[n]$ identical elements to two $n$ long lists
$begingroup$
While i was doing an Olympiad problem, i managed to reduce it to this one with a bijection, but now i don't know what to do:
Suppose we have $n$ objects ordered in a line. In how many ways I can select a subset of non-intersecting couples composed by consecutive elements?
For example in the sequence $12345$ the answer is $7$:
$12\ 23 \ 34 \ 45 \ 12,34 \ 12,45 \ 23,45 $
There is also a generalization that may be helpful:
Suppose we have $n$ objects ordered in a line. In how many ways I can select a subset $A$ (with $|A|leq k$ where k is a given integer) of non-intersecting $j$-ples composed by consecutive elements?
I would be happy even if you help me just with the first one. Thank you :)
combinatorics
$endgroup$
add a comment |
$begingroup$
While i was doing an Olympiad problem, i managed to reduce it to this one with a bijection, but now i don't know what to do:
Suppose we have $n$ objects ordered in a line. In how many ways I can select a subset of non-intersecting couples composed by consecutive elements?
For example in the sequence $12345$ the answer is $7$:
$12\ 23 \ 34 \ 45 \ 12,34 \ 12,45 \ 23,45 $
There is also a generalization that may be helpful:
Suppose we have $n$ objects ordered in a line. In how many ways I can select a subset $A$ (with $|A|leq k$ where k is a given integer) of non-intersecting $j$-ples composed by consecutive elements?
I would be happy even if you help me just with the first one. Thank you :)
combinatorics
$endgroup$
add a comment |
$begingroup$
While i was doing an Olympiad problem, i managed to reduce it to this one with a bijection, but now i don't know what to do:
Suppose we have $n$ objects ordered in a line. In how many ways I can select a subset of non-intersecting couples composed by consecutive elements?
For example in the sequence $12345$ the answer is $7$:
$12\ 23 \ 34 \ 45 \ 12,34 \ 12,45 \ 23,45 $
There is also a generalization that may be helpful:
Suppose we have $n$ objects ordered in a line. In how many ways I can select a subset $A$ (with $|A|leq k$ where k is a given integer) of non-intersecting $j$-ples composed by consecutive elements?
I would be happy even if you help me just with the first one. Thank you :)
combinatorics
$endgroup$
While i was doing an Olympiad problem, i managed to reduce it to this one with a bijection, but now i don't know what to do:
Suppose we have $n$ objects ordered in a line. In how many ways I can select a subset of non-intersecting couples composed by consecutive elements?
For example in the sequence $12345$ the answer is $7$:
$12\ 23 \ 34 \ 45 \ 12,34 \ 12,45 \ 23,45 $
There is also a generalization that may be helpful:
Suppose we have $n$ objects ordered in a line. In how many ways I can select a subset $A$ (with $|A|leq k$ where k is a given integer) of non-intersecting $j$-ples composed by consecutive elements?
I would be happy even if you help me just with the first one. Thank you :)
combinatorics
combinatorics
edited Mar 25 at 19:11
Eureka
asked Mar 25 at 19:01
EurekaEureka
876114
876114
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
Do you allow the empty subset? If so, the answer is $F_n+1$, the $(n+1)^st$ Fibonacci number. If not, then subtract one from this.
You can prove this by induction. If $a_n$ is the number of ways to select the couples (allowing the empty selection), then $a_n=a_n-1+ a_n-2$, which follows by considering whether or not the rightmost object, $n$, is in one of the chosen couples.
$endgroup$
$begingroup$
Stunning work :)
$endgroup$
– Eureka
Mar 25 at 20:47
$begingroup$
The comment about the empty subset is the subtle bit here. :) $F_5 = 7$ is not a Fibonacci number, after all. And if one tries to write the recursion using $b_n$ which doesn't include the empty subset, one gets $b_n = b_n-1 + (b_n-2 colorred+ 1)$ which is of course a shifted Fibonacci but may be less obvious.
$endgroup$
– antkam
Mar 26 at 14:20
add a comment |
Your Answer
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%2f3162192%2fnumber-of-ways-in-which-we-can-select-non-intersecting-couples-from-n-elements%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$
Do you allow the empty subset? If so, the answer is $F_n+1$, the $(n+1)^st$ Fibonacci number. If not, then subtract one from this.
You can prove this by induction. If $a_n$ is the number of ways to select the couples (allowing the empty selection), then $a_n=a_n-1+ a_n-2$, which follows by considering whether or not the rightmost object, $n$, is in one of the chosen couples.
$endgroup$
$begingroup$
Stunning work :)
$endgroup$
– Eureka
Mar 25 at 20:47
$begingroup$
The comment about the empty subset is the subtle bit here. :) $F_5 = 7$ is not a Fibonacci number, after all. And if one tries to write the recursion using $b_n$ which doesn't include the empty subset, one gets $b_n = b_n-1 + (b_n-2 colorred+ 1)$ which is of course a shifted Fibonacci but may be less obvious.
$endgroup$
– antkam
Mar 26 at 14:20
add a comment |
$begingroup$
Do you allow the empty subset? If so, the answer is $F_n+1$, the $(n+1)^st$ Fibonacci number. If not, then subtract one from this.
You can prove this by induction. If $a_n$ is the number of ways to select the couples (allowing the empty selection), then $a_n=a_n-1+ a_n-2$, which follows by considering whether or not the rightmost object, $n$, is in one of the chosen couples.
$endgroup$
$begingroup$
Stunning work :)
$endgroup$
– Eureka
Mar 25 at 20:47
$begingroup$
The comment about the empty subset is the subtle bit here. :) $F_5 = 7$ is not a Fibonacci number, after all. And if one tries to write the recursion using $b_n$ which doesn't include the empty subset, one gets $b_n = b_n-1 + (b_n-2 colorred+ 1)$ which is of course a shifted Fibonacci but may be less obvious.
$endgroup$
– antkam
Mar 26 at 14:20
add a comment |
$begingroup$
Do you allow the empty subset? If so, the answer is $F_n+1$, the $(n+1)^st$ Fibonacci number. If not, then subtract one from this.
You can prove this by induction. If $a_n$ is the number of ways to select the couples (allowing the empty selection), then $a_n=a_n-1+ a_n-2$, which follows by considering whether or not the rightmost object, $n$, is in one of the chosen couples.
$endgroup$
Do you allow the empty subset? If so, the answer is $F_n+1$, the $(n+1)^st$ Fibonacci number. If not, then subtract one from this.
You can prove this by induction. If $a_n$ is the number of ways to select the couples (allowing the empty selection), then $a_n=a_n-1+ a_n-2$, which follows by considering whether or not the rightmost object, $n$, is in one of the chosen couples.
answered Mar 25 at 20:39
Mike EarnestMike Earnest
27.9k22152
27.9k22152
$begingroup$
Stunning work :)
$endgroup$
– Eureka
Mar 25 at 20:47
$begingroup$
The comment about the empty subset is the subtle bit here. :) $F_5 = 7$ is not a Fibonacci number, after all. And if one tries to write the recursion using $b_n$ which doesn't include the empty subset, one gets $b_n = b_n-1 + (b_n-2 colorred+ 1)$ which is of course a shifted Fibonacci but may be less obvious.
$endgroup$
– antkam
Mar 26 at 14:20
add a comment |
$begingroup$
Stunning work :)
$endgroup$
– Eureka
Mar 25 at 20:47
$begingroup$
The comment about the empty subset is the subtle bit here. :) $F_5 = 7$ is not a Fibonacci number, after all. And if one tries to write the recursion using $b_n$ which doesn't include the empty subset, one gets $b_n = b_n-1 + (b_n-2 colorred+ 1)$ which is of course a shifted Fibonacci but may be less obvious.
$endgroup$
– antkam
Mar 26 at 14:20
$begingroup$
Stunning work :)
$endgroup$
– Eureka
Mar 25 at 20:47
$begingroup$
Stunning work :)
$endgroup$
– Eureka
Mar 25 at 20:47
$begingroup$
The comment about the empty subset is the subtle bit here. :) $F_5 = 7$ is not a Fibonacci number, after all. And if one tries to write the recursion using $b_n$ which doesn't include the empty subset, one gets $b_n = b_n-1 + (b_n-2 colorred+ 1)$ which is of course a shifted Fibonacci but may be less obvious.
$endgroup$
– antkam
Mar 26 at 14:20
$begingroup$
The comment about the empty subset is the subtle bit here. :) $F_5 = 7$ is not a Fibonacci number, after all. And if one tries to write the recursion using $b_n$ which doesn't include the empty subset, one gets $b_n = b_n-1 + (b_n-2 colorred+ 1)$ which is of course a shifted Fibonacci but may be less obvious.
$endgroup$
– antkam
Mar 26 at 14:20
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%2f3162192%2fnumber-of-ways-in-which-we-can-select-non-intersecting-couples-from-n-elements%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