retagged by
493 views
4 votes
4 votes

Consider the following two combinatorial identities:

  1. For all $\mathrm{k}, \mathrm{n} \in \mathrm{N}$ with $\mathrm{k} \leq \mathrm{n}$,$$\left(\begin{array}{l} n \\ 2 \end{array}\right)+\left(\begin{array}{c} n+1 \\ 2 \end{array}\right)=n^{2} .$$
  2. For all $k, n \in N$ with $k \leq n$, $$k\left(\begin{array}{l} n\\ k \end{array}\right)=n\left(\begin{array}{l} n-1\\ k-1 \end{array}\right)$$

Which of the above are correct?

  1. Only $1$
  2. Only $2$
  3. Both
  4. None
retagged by

2 Answers

2 votes
2 votes
  1. We can verify algebraically that the identity holds: $$\left(\begin{array}{l}n \\2\end{array}\right)+\left(\begin{array}{c}n+1 \\2\end{array}\right)=\frac{n(n-1)}{2}+\frac{n(n+1)}{2}=n^{2}$$

 

  1. Algebraically, this identity is rather immediate. For a combinatorial perspective, consider the task of selecting a cabinet of $k$ people with a president out of $n$ possible candidates. One can either
    1. Select the president in $n$ ways and the remaining $k-1$ members of the cabinet in $\left(\begin{array}{c}n-1 \\ k-1\end{array}\right)$ ways for a total of $n\left(\begin{array}{c}n-1 \\ k-1\end{array}\right)$ ways.
    2. Or select the $k$ members of the cabinet first in $\left(\begin{array}{l}n \\ k\end{array}\right)$ ways and then the president among those in the cabinet in $k$ ways for a total of $k\left(\begin{array}{l}n \\ k\end{array}\right)$ ways.

https://www.goclasses.in/

edited by
0 votes
0 votes
Great question. Great answers already by many.

Combinatorial argument for 1.

This answer is plagiarized from math.stackexchange.com so I deserve no credit at all. Just here to explain.

n^2 is the no. of integers less than 100.

2C(n, 2) : is the no. of numbers less than 100 having distinct digits.

C(n,1): is the no. of numbers less than hundred having both digits same.

Therefore,. n^2 = 2C(n, 2) + C(n,1)

                    n^2 = 2C(n,2) + n.

Now coming to the real part.

Our question,

                   C(n, 2) + C( n+1, 2 ) = n^2

                   C(n,2) + C( n+1, 2 ) = 2C(n, 2) + n.

                   C( n+1, 2) = C(n, 2) + n. (we will prove that this is true.)

 LHS

C( n+1, 2) = no. of edges in a n+1 complete graph.

RHS

C(n, 2) + n = no. of edges between n nodes + put another node and join it with all n nodes.

Therefore we have proved that,

            C( n+1, 2 )= C(n, 2) + n.

And hence

            C(n,2)+ C(n+1, 2) = n^2 is true.
Answer:

Related questions

4 votes
4 votes
1 answer
2
3 votes
3 votes
1 answer
3
GO Classes asked Jun 14, 2022
386 views
How many integer solutions does the equation$$x_{1}+x_{2}+x_{3}+x_{4}=15$$have, if we require that $x_{1} \geq 2, x_{2} \geq 3, x_{3} \geq 10$ and $x_{4} \geq-3 ?$
5 votes
5 votes
1 answer
4