- A combination is a selection of items from a set where the order of selection is not important.
- For example, choosing 2 students out of a group of 5 for a committee is a combination problem.
- The number of combinations of 'n' items taken 'r' at a time is denoted by nCr or C(n, r).
- The formula is: nCr = n! / (r! * (n-r)!).
- Where '!' denotes the factorial (e.g., 5! = 5 * 4 * 3 * 2 * 1).