Proving the Minimum Value of Combinations: Odd vs. Even n

In summary: So, in order to use the symmetry of the triangle, you need to prove it. Is there a way to do that without actually using the triangle?
  • #1
Crystal037
167
7
Homework Statement
If n is an even natural number, then the greatest value of nCr is nCn/2 and if n is odd, then the greatest value of nCr is nC(n+1)/2 and nC(n-1)/2
Relevant Equations
nCr=n!/(n-r)!r!
I know nCn/2 = n!/((n/2)!)^2 = 2^(n/2)(1.3.5...n-1)
but I am not getting why it's the least one.
 
Physics news on Phys.org
  • #2
For 2n, n is a natural number,
2nCn = 2n!/n!n! = Highest value of nCr
Let r=k+n for a natural number,k
2nCn = 2nCr.(n+1)(n+2)...(n+k)/n(n-1)...(n-k)
Eg, when 2n=12, n=6
highest value of 12Cr should be 12C6
12C6 = 12*11*10*9*8*7*6*5*4*3*2*1/(6*5*4*3*2*1)(6*5*4*3*2*1) =12*11*10*9*8*7/(6*5*4*3*2*1)
for any other value of r let r=9, then 9=k+6 which implies k=3
12C9=12*11*10*9*8*7*6*5*4*3*2*1/(9*8*7*6*5*4*3*2*1)(3*2*1) =12*11*10/(*3*2*1)
which is less than 12C6 by a factor of (9*8*7)/(6*5*4) = (6+1)(6+2)(6+3)/6(6-1)(6-2)
If n=2m+1, m is any natual number i.e. n is an odd no.,
nC(n+1)/2, nC(n-1)/2 =Highest value of nCr
nC(n+1)/2=nCr.((n+1)/2+1)((n+1)/2+2)...((n+1)/2+k)/((n-1)/2)((n-1)/2-1)...((n-1)/2-k)
Eg for n=11 highest value of 11Cr should be 11C6
since, n=11, (n+1)/2=6, (n-1)/2=5
11*10*9*8*7*6*5*4*3*2*1/(6*5*4*3*2*1)(5*4*3*2*1)=11*10*9*8*7/5*4*3*2*1
for any other value of r let r=9, then 9=k+6 which implies k=3
11C9=11*10*9*8*7*6*5*4*3*2*1/(9*8*7*6*5*4*3*2*1)(2*1)
which is less that 11C6 by a factor of 9*8*7/5*4*3=(6+1)(6+2)(6+3)/(6-1)(6-2)(6-3)
 
  • #3
If you are trying to prove this, you could look at the general pattern that binomial coefficients, for a given ##n##, get larger until they reach a peak and then get smaller. You could think about why they get larger then smaller.
 
  • #4
Maybe you can look at Pascal's triangle and the recursion rule. Notice each row's entries are symmetric so you don't need to consider all the entries.
 
  • #5
I can't understand how to use recursion rule to say if a term is the highest
 
  • #6
Crystal037 said:
I can't understand how to use recursion rule to say if a term is the highest

Why not look at ##\binom{n}{k+1} / \binom{n}{k}##?
 
  • #7
the answer would be k/(n-k+1), then how to proceed
 
  • #8
Crystal037 said:
I can't understand how to use recursion rule to say if a term is the highest
Write down first few , 2-3 lines explicitly and the mid terms are the largest. For the general nth row, the midterm will be the sum of the two largest in the previous row. Take,e.g., the 3rd and 4th row: 1,3,3,1 and 1 , 4, 6, 4, 1. The 6 in the 4th row is the sum of 3,3 , both largest terms , so it must be larger than all other terms in the row.
 
  • #9
Oh yes, the middle terms are always greater than the other terms because they are the sum of the largest terms from the previous row. Thanks.
And the formula I wrote in #2 is that correct.
 
  • #10
Crystal037 said:
Oh yes, the middle terms are always greater than the other terms because they are the sum of the largest terms from the previous row. Thanks.
And the formula I wrote in #2 is that correct.
Yes, though the two are separate arguments.
 
  • #11
Crystal037 said:
the answer would be k/(n-k+1), then how to proceed

That's not right. E.g. try ##k =0##.

The idea is that ##a > b## if and only if ##a/b > 1##, assuming ##a, b## are positive. Really, you have to be able to think of something like this for yourself.

You need to decide whether to concetrate on this approach or the approach based on Pascal's triangle. I would say, however, that if you use Pascal's triangle, then you have be careful to prove everything that you are seeing from the triangle.

For example, it's been quoted that the triangle is symmetrical. But, you can't use the symmetry of the triangle unless you prove it. In fact, it's part of the symmetry of the triangle that you are trying to prove in this problem.
 
  • #12
PeroK said:
That's not right. E.g. try ##k =0##.

The idea is that ##a > b## if and only if ##a/b > 1##, assuming ##a, b## are positive. Really, you have to be able to think of something like this for yourself.

You need to decide whether to concetrate on this approach or the approach based on Pascal's triangle. I would say, however, that if you use Pascal's triangle, then you have be careful to prove everything that you are seeing from the triangle.

For example, it's been quoted that the triangle is symmetrical. But, you can't use the symmetry of the triangle unless you prove it. In fact, it's part of the symmetry of the triangle that you are trying to prove in this problem.
Good point, my argument does assume that symmetry. Op should prove nCk=nC(n-k).
 
  • Like
Likes PeroK
  • #13
PeroK said:
That's not right. E.g. try ##k =0##.

The idea is that ##a > b## if and only if ##a/b > 1##, assuming ##a, b## are positive. Really, you have to be able to think of something like this for yourself.

You need to decide whether to concetrate on this approach or the approach based on Pascal's triangle. I would say, however, that if you use Pascal's triangle, then you have be careful to prove everything that you are seeing from the triangle.

For example, it's been quoted that the triangle is symmetrical. But, you can't use the symmetry of the triangle unless you prove it. In fact, it's part of the symmetry of the triangle that you are trying to prove in this problem.
Oh sorry
The answer should be (n-k)/(k+1)
 
  • #14
WWGD said:
Good point, my argument does assume that symmetry. Op should prove nCk=nC(n-k).
How proving nCk=nC(n-k) would help in proving the symmetry
 
  • #15
Crystal037 said:
How proving nCk=nC(n-k) would help in proving the symmetry

That is the symmetry!
 
  • #16
Crystal037 said:
Oh sorry
The answer should be (n-k)/(k+1)

That tells you when the coefficients are increasing.
 
  • #17
Because this shows that the kth term in a row equals the (n-k) th term. But for induction you can just try to show that if you have the highest term in the middle in the jth row you will also have it in the (j+1)st row by adding the two central terms.
 
  • #18
So using the pascal triangle we found what the highest value of nCr is.
 
  • #19
Crystal037 said:
So using the pascal triangle we found what the highest value of nCr is.

The triangle you're looking at is only finite. How do you know the pattern continues?
 
  • #20
By using mathematical induction, can't I prove it?
 
  • #21
We haven't done anything yet Chrystal, this was just an idea and it needs to be fleshed out. I think @PeroK. 's idea seems closer to a solution. You may, of course, work both out.
 
  • #22
Crystal037 said:
By using mathematical induction, can't I prove it?

Yes, but an inductive proof looks like it might get messy to me.
 
  • #23
Using Pascal triangle ,
we know that the middle terms are greater, since they are found by adding the above middle terms which are greater & this leads us to the 2nd index where the greater term started as 2 which was due to the fact that we added the only 2 numbers in the 1st index 1 &1, which came from 0th index i.e.1
Screenshot_2019-10-14-00-17-54-721_com.google.android.apps.docs.jpg
 
  • #24
That's far from a rigorous mathematical proof. The result can be seen informally by looking at the triangle. But, you need to put together a formal inductive proof.
 
  • #25
What do you mean by formal inductive proof? Give me some hint on how to begin with
 
  • #26
I would say something like : assume the central terms are the largest for 1 through k-1 in their respective rows . Then show if the central term of the kth row is the largest, as the sum of largest terms in previous rows, then the central term of the (k+1)st row must be the largest, as the sum of the two largest in the k-th row.
 
  • #27
WWGD said:
I would say something like : assume the central terms are the largest for 1 through k-1 . Then show if the central term of the kth row is the largest, as the sum of largest terms in previous rows, then the central term of the (k+1)st row must be the largest, as the sum of the two largest in the k-th row.

Although, what it to be proved is different for odd and even ##n##.
 
  • Like
Likes WWGD
  • #28
PeroK said:
Although, what it to be proved is different for odd and even ##n##.
Yes, good idea.
 

What is the highest value that can be achieved in combinations?

The highest value that can be achieved in combinations depends on the specific set of items or elements being combined. In general, the highest value will be the sum of the largest elements in the set.

How can I find the highest value in a combination?

To find the highest value in a combination, you will need to first identify the set of items or elements being combined. Then, you can use mathematical techniques such as addition, multiplication, or exponentiation to determine the highest value.

Is there a formula for calculating the highest value in combinations?

There is no single formula for calculating the highest value in combinations, as it will depend on the specific elements being combined. However, there are various mathematical techniques and algorithms that can be used to determine the highest value, such as dynamic programming, greedy algorithms, or brute force methods.

What factors can affect the highest value in combinations?

The highest value in combinations can be affected by various factors, such as the number of elements being combined, the range of values of the elements, and the specific combination method being used. Additionally, the order in which the elements are combined can also impact the highest value.

How can I optimize for the highest value in combinations?

To optimize for the highest value in combinations, you can use various techniques such as sorting the elements in descending order before combining, using efficient combination methods, or adjusting the element values to maximize the final value. It is also important to carefully consider the constraints and limitations of the combination problem to determine the most effective optimization approach.

Similar threads

  • Precalculus Mathematics Homework Help
Replies
4
Views
787
  • Precalculus Mathematics Homework Help
Replies
4
Views
4K
  • Precalculus Mathematics Homework Help
Replies
4
Views
1K
  • Precalculus Mathematics Homework Help
Replies
9
Views
1K
  • Precalculus Mathematics Homework Help
Replies
3
Views
225
  • Precalculus Mathematics Homework Help
Replies
12
Views
1K
  • Precalculus Mathematics Homework Help
Replies
7
Views
752
  • Precalculus Mathematics Homework Help
Replies
9
Views
968
  • Precalculus Mathematics Homework Help
Replies
11
Views
4K
Back
Top