Questions tagged [binomial-coefficients]

For questions involving the coefficients involved in the binomial theorem. $ \binom{n}{k}$ counts the subsets of size $k$ of a set of size $n$.

The binomial coefficient $\binom{n}{k}$ can be defined in several equivalent ways for $n$ and $k$ non-negative integers:

  1. The number of subsets of size $k$ of a set of size $n$.
  2. Element $k$ of row $n$ in Pascal's triangle (counting the first element or row as $0$).
  3. $\dfrac{n!}{k!(n-k)!}$
  4. The coefficient of $x^k$ in $(1+x)^n$.

The binomial theorem says that $$(x+y)^n=\sum_{k=0}^n\binom{n}{k}x^{n-k}y^k$$ using the convention that $0^0=1$.

Binomial coefficients can be extended for arbitrary complex $\alpha$ through the formula: $$\binom{\alpha}{k}=\frac{\alpha(\alpha-1)(\alpha-2)\dots(\alpha-k+1)}{k(k-1)(k-2)\dots1}$$

7695 questions
2
votes
1 answer

Prove that $\sum_{r=0}^{n} r \binom{n}{r}^2 = \frac{n}{2} \binom {2n}{n}$

My attempt $$\sum_{r=0}^{n} r \times \frac nr \left[\binom {n-1}{r-1} \right]^2$$ $$=n\sum _{r=0}^{n} \left [\binom {n-1}{r-1}\right]^2$$ The square on the binomial coefficient is throwing me off, otherwise it would have been easier to proceed. I…
Aditya
  • 6,191
2
votes
2 answers

If $\binom{n}{r} = 45$, and $(n-3r)! = 24$, Is there a method of knowing $n$ and $r$ without guessing?

I got the equation: $n = 4 + 3r.$ So, $\displaystyle\binom{4+3r}{r} = 45$, and by using trial and error, I get $r = 2$, and $n = 10$, which is correct.
2
votes
4 answers

A faster way to find the term $x^0$ in the expansion of $(1-\frac{x}{3})^{5}(1+\frac{2}{x})^{3}$

Now I am actually looking for a method in the general case when you have a product of two binomials. The method I use is equating coefficients; I have provided my example solution to this question as an answer. Now this is a pretty good method I…
user71207
  • 1,543
2
votes
3 answers

Showing the inequality holds (binomial coefficient)

I'm struggling to understand how to show that the inequality holds for $ m,n \in \mathbb{N} \; \text{with} \; m
2
votes
2 answers

Binomial identity involving negative values

I want to check this identity that appears in Feller's first book on probability: $${2n\choose n}=(-1)^n4^n{-1/2\choose n}$$ So I apply this definition $${x\choose…
David
  • 796
2
votes
3 answers

find the coefficient of $x^5$ in $(1+2x-3x^2)^6$

I know that I should first factor the expression within the brackets to $-(3x+1)^6(x-1)^6$. However, after that I do not know what to do.
2
votes
2 answers

Values for partial row starts of Pascal's triangle

I have been working on a problem recently that hinges on a closed form solution (or one that can be modified to be continuous) for the following problem. The function takes 4 parameters $n_1,k_1,n_2,k_2$ you calculate Pascal's triangle normally…
2
votes
2 answers

Having $\binom{\lambda}{n}=n+1$, which is $\lambda$?

One question, if I've got this, $\binom{\lambda}{n}=n+1$, which has to be the value of $\lambda$?
User160
  • 953
2
votes
1 answer

Fast method to solve this Pascal's Triangle question

I am studying for TMSCA, a timed math test, and would like to solve the following question in under a minute. Is there any shortcut method? Any help would be appreciated. The question: Moving only to the right or upwards, how many paths are there…
2
votes
3 answers

Binomial Theorem and number of subsets

I'm reading my textbook on binomial theorem and there's an example question with the solution. I don't understand it. Can someone please explain? Thanks in advance. How many subsets are there of a set consisting of n elements? Solution:…
user1527227
  • 1,738
  • 7
  • 38
  • 60
2
votes
1 answer

Get the coefficient of $x^n$ in the binomial expansion

I have this statement: Get the coefficient of $x^n$ in $(1-x+x^2)(1+x)^{2n-1}$ My development was: Note that all exponents of $(1+x)^{2n-1}$ will be modified by $+2$ by $x^2$ and $+1$ by $x$ Then the to get $x^n$ i need the $x^{n-2}$ term in the…
ESCM
  • 3,161
2
votes
2 answers

Calculating the highest possible damage achievable using 6 items from a pool of ~25

I am writing an app in javascript to try to figure out item builds for characters in a video game. There are about 25 top-tier items, and you can carry 6 at a time. They have very different effects, which leads me to believe that while one item may…
Shawn
  • 125
2
votes
2 answers

Binomial identity $\sum\limits_{k=1}^{n-1}(-1)^{k+1}\frac{n-1 \choose k}{n-k} = \frac 2 n$

Prove that when $n$ is even: $$\sum\limits_{k=1}^{n-1}(-1)^{k+1}\frac{n-1 \choose k}{n-k} = \frac 2 n$$ Note that when $n$ is odd, the identity above becomes $0$. It arose out of my attempt at proving equation (1) below (details here). Equation (1)…
Rohit Pandey
  • 6,803
2
votes
1 answer

Looking for an easy proof that the binomial coefficient is bounded by $2^{n-1}$

I am looking for the easiest proof that $\binom{n}{k}\leq 2^{n-1}$ (hopefully even with no induction...). Note: if $k\neq \frac{n}{2}$, then I have a one liner: $$2\binom{n}{k} = \binom{n}{k}+\binom{n}{n-k} \leq (1+1)^n = 2^n.$$ So perhaps it…
Lior B-S
  • 2,316
2
votes
0 answers

Is there an estimate for the greatest element in a row of Pascal's triangle

I'm playing around with generating rows of Pascal Triangle. I want to know, given a fixed-width integer type, the maximum row I can calculate before any individual element would be too big. The sum of the elements of a row n of the triangle add up…
CTMacUser
  • 201