Proving the Evenness of {^{2n}}C_n: A Combinatorics Challenge

  • Thread starter Thread starter Mentallic
  • Start date Start date
  • Tags Tags
    Combinatorics
Click For Summary

Homework Help Overview

The discussion revolves around proving that the binomial coefficient {^{2n}}C_n is an even number. This falls within the subject area of combinatorics, specifically dealing with properties of binomial coefficients.

Discussion Character

  • Exploratory, Assumption checking, Mathematical reasoning

Approaches and Questions Raised

  • Participants discuss various methods to demonstrate the evenness of {^{2n}}C_n, including factorial manipulations and proof by induction. Some suggest leveraging properties of Pascal's Triangle, while others question the assumptions made during the reasoning process.

Discussion Status

The conversation is ongoing, with participants sharing hints and exploring different lines of reasoning. Some guidance has been offered regarding the use of Pascal's Triangle and induction, but there is no explicit consensus on the approach to take.

Contextual Notes

Participants note the need to show that certain expressions yield integers and question the validity of their assumptions and simplifications. There is also mention of the challenge posed by homework rules that may limit the information available for solving the problem.

Mentallic
Homework Helper
Messages
3,802
Reaction score
95

Homework Statement


I need to show that [tex]{^{2n}}C_n[/tex] is an even number.

Homework Equations


[tex]{^n}C_k=\frac{n!}{k!(n-k)!}[/tex]

The Attempt at a Solution


It was simple to convert the expression into factorials, but from there I really am stuck.

[tex]\frac{(2n)!}{(n!)^2}=\frac{2n(2n-1)(2n-2)...(n+2)(n+1)}{n(n-1)(n-2)...2\cdot1}[/tex]

To show that it is even I would need to somehow cancel out the denominator, but I have had no such luck in doing so.
 
Physics news on Phys.org


You have a 2 at the beginning of the expanded expression of (2n)!/(n!)2; won't that be enough to show that it's even?
 


Have you tried proof by induction?
 


Think of Pascal's Triangle.

ehild
 


Bohrok said:
You have a 2 at the beginning of the expanded expression of (2n)!/(n!)2; won't that be enough to show that it's even?
No, because we need to show that the rest of the expression is an integer, and we haven't done so due to the fraction involved.

SammyS said:
Have you tried proof by induction?
I'll give it a go.

ehild said:
Think of Pascal's Triangle.

ehild
Yes I was thinking maybe rather than algebraic manipulations, this question just needs a good old logical explanation as to why it must be true.

I'll get back to editing this when I've tried more things out.
 


ehild said:
Think of Pascal's Triangle.

ehild

Wow, with those 4 words of advice, I solved this in about a minute! :smile:

For another hint, Mentallic, remember the properties
[tex] \binom{n}{k} = \binom{n-1}{k} + \binom{n-1}{k-1}[/tex]
and
[tex] \binom{n}{k} = \binom{n}{n-k}.[/tex]

It should fall right out!
 


spamiam said:
Wow, with those 4 words of advice, I solved this in about a minute! :smile:

But it took me about half an hour to find these four words. :wink:

ehild
 


spamiam said:
Wow, with those 4 words of advice, I solved this in about a minute! :smile:

For another hint, Mentallic, remember the properties
[tex] \binom{n}{k} = \binom{n-1}{k} + \binom{n-1}{k-1}[/tex]
and
[tex] \binom{n}{k} = \binom{n}{n-k}.[/tex]
Oh wow I wish I remembered the first equality. For a question in an exam that doesn't provide us with something like "use the equality ..." but it instead prefers to tell me that tan=sin/cos, I feel like I just got slapped in the face.

[tex]\binom{2n}{n}=\binom{2n-1}{n}+\binom{2n-1}{n-1}[/tex]

[tex]\binom{2n-1}{n-1}=\binom{2n-1}{2n-1-(n-1)}=\binom{2n-1}{n}[/tex]

Therefore

[tex]\binom{2n}{n}=2\binom{2n-1}{n}[/tex]

But all valid binomials are integers, thus it is even.

ehild said:
But it took me about half an hour to find these four words. :wink:

ehild
Some wise words indeed :wink:


As for the proof by induction, I had some trouble along the way, and I'm unsure of what 'excuse' to use.

Assume [tex]\binom{2n}{n}=2a, a\in Z[/tex]

and now prove [tex]\binom{2n+2}{n+1}=2b, b\in Z[/tex]

[tex]\binom{2n+2}{n+1}=\frac{(2n+2)(2n+1)(2n)!}{(n+1)n!(n+1)n!}[/tex]
[tex]=\frac{(2n+2)(2n+1)}{(n+1)^2}\binom{2n}{n}[/tex]

Now all I can say at this point is that [tex]\binom{2n}{n}[/tex] is some integer, so I need to show that [tex]\frac{(2n+2)(2n+1)}{(n+1)^2}[/tex] is even for all integers n.

[tex]\frac{(2n+2)(2n+1)}{(n+1)^2}=2\left(\frac{2n+1}{n+1}\right)[/tex]

And from this point I'm unsure, but I was also able to convert it into the form

[tex]=2\left(2-\frac{1}{n+1}\right)[/tex] and from this expression, it's quite clear that it is going to not be true, so I must have done something wrong.
 


You know that an element in the Pascal triangle is the sum of the two elements above it. And the triangle is symmetric.
The 2N line has odd number of elements, and that in question is just in the middle so the two other elements above it are equal.

ehild
 

Attachments

  • pascal.JPG
    pascal.JPG
    4.6 KB · Views: 426
  • #10


Hi Mentallic! :smile:

Aren't you forgetting your induction assumption?
That is:
[tex]\binom{2n}{n}=2a, a\in Z[/tex]
which is even?
 
  • #11


ehild said:
You know that an element in the Pascal triangle is the sum of the two elements above it. And the triangle is symmetric.
The 2N line has odd number of elements, and that in question is just in the middle so the two other elements above it are equal.

ehild

That route would seem like such an easy way out, I would need to prove that both numbers above it are equal, no?

I like Serena said:
Hi Mentallic! :smile:

Aren't you forgetting your induction assumption?
That is:
[tex]\binom{2n}{n}=2a, a\in Z[/tex]
which is even?

Oh, right :biggrin: It doesn't really change anything though, because I still need to show that the other factor is an integer and it clearly isn't. It's obvious that I went wrong somewhere along the way, yet I can't see where.
 
  • #12


Mentallic said:
That route would seem like such an easy way out, I would need to prove that both numbers above it are equal, no?

Those two elements above are 2n-1Cn-1 and 2n-1Cn, are not they? Are not they the same? (Anyway, the Pascal triangle is symmetric.)

ehild
 
  • #13


Mentallic said:
Oh, right :biggrin: It doesn't really change anything though, because I still need to show that the other factor is an integer and it clearly isn't. It's obvious that I went wrong somewhere along the way, yet I can't see where.

I checked your formula which is correct, so you didn't go wrong along the way.
However, you're left with proving that (n+1) divides [itex]\binom{2n}{n}[/itex], which is not immediately obvious. You can probably do it with full induction. :-p
 
  • #14


ehild said:
Those two elements above are 2n-1Cn-1 and 2n-1Cn, are not they? Are not they the same? (Anyway, the Pascal triangle is symmetric.)

ehild

Oh yes of course, and the fact that Pascal's triangle is symmetrical is nailed down once more :smile:
By they way, are they not? :wink:

I like Serena said:
I checked your formula which is correct, so you didn't go wrong along the way.
However, you're left with proving that (n+1) divides [itex]\binom{2n}{n}[/itex], which is not immediately obvious. You can probably do it with full induction. :-p

If I were to expand the binomial, where exactly would I be using my inductive hypothesis?
 
  • #15


For every way to choose n objects from 2n, there exists a complementary choice (the other n objects).
 
  • #16


Mentallic said:
If I were to expand the binomial, where exactly would I be using my inductive hypothesis?

Dunno. I tried it for a little while, but I don't see yet how to do this with full induction. :(
 
  • #17


Mentallic said:
It was simple to convert the expression into factorials, but from there I really am stuck.

[tex]\frac{(2n)!}{(n!)^2}=\frac{2n(2n-1)(2n-2)...(n+2)(n+1)}{n(n-1)(n-2)...2\cdot1}[/tex]
You simplified it too much. Try writing it like
[tex]\begin{pmatrix}2n \\ n\end{pmatrix} = \frac{2n!}{n! n!} = \frac{2n (2n-1)!}{n(n-1)! n!}=\cdots[/tex]
 
  • #18


Gib Z said:
For every way to choose n objects from 2n, there exists a complementary choice (the other n objects).

wow genius solution!
 

Similar threads

  • · Replies 19 ·
Replies
19
Views
4K
  • · Replies 10 ·
Replies
10
Views
4K
  • · Replies 4 ·
Replies
4
Views
6K
  • · Replies 6 ·
Replies
6
Views
2K
Replies
6
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 11 ·
Replies
11
Views
4K
  • · Replies 3 ·
Replies
3
Views
5K