3

Triangular numbers are of the form $\frac{n(n+1)}{2}$ where $n$ is a non-negative integer, or of the form $1 + 2 + 3 + .... + n$.

The no.of ways of choosing $2$ objects out of $n$ objects is also $\frac{n(n+1)}{2}$.

I was wondering whether we could count the no.of ways of choosing $2$ objects out of $n$, in the form of $1 + 2 + 3 +......+ n$.

I could not think of a way to do this.

How can we think of $n$ choose $2$ in the form of $1 + 2 + .... + n$?

Ram Keswani
  • 1,013

2 Answers2

1

given that the first item lexicographically that you choose is the $k$th, how many ways can the second such item be chosen?

Dan Uznanski
  • 11,488
  • Right. I can fix the 1st object, then I have (n-1) options for the second object. Then if I fix the 2nd object, I have (n-2) options as I cannot choose rhe 1st or second object and so on. Thank you. – Ram Keswani Aug 25 '19 at 09:50
0

You can enumerate the objects from 1 to n. Then you can divide the possible couples into:

-Couples in which you have object n. 1

-Couples in which you have object n. 2 but not n. 1 (you have already counted couple $\{ 1,2\}$ )

-Couples in which you have object n. 3 but not n. 1 and n. 2

And so on...

If you sum cardinalities of this groups you find $1+2+3+4+5...+n$

Alessandro Cigna
  • 2,516
  • 7
  • 15