How to Do Ncr Without A Calculator
Calculating combinations (nCr) is a fundamental math skill used in probability, statistics, and combinatorics. While calculators make this easy, knowing how to do it manually is valuable for understanding the underlying principles and verifying results.
What is nCr?
In combinatorics, nCr (also written as C(n,r) or "n choose r") represents the number of ways to choose r items from a set of n distinct items without regard to order. The formula for nCr is:
nCr = n! / (r! × (n - r)!)
Where:
- n! (n factorial) is the product of all positive integers up to n
- r! is the factorial of r
- (n - r)! is the factorial of (n - r)
This formula works because we're dividing the total permutations of n items by the permutations of the r items we're choosing and the permutations of the remaining items.
Methods to Calculate nCr Without a Calculator
1. Using Pascal's Triangle
Pascal's Triangle is a visual representation of combinations where each number is the sum of the two numbers directly above it. To use it:
- Draw Pascal's Triangle up to the nth row
- Count r positions from the left (starting at 0)
- The number at that position is your nCr value
Pascal's Triangle is limited to small values of n (typically n ≤ 20) due to the exponential growth of numbers.
2. Using the Multiplicative Formula
The multiplicative formula simplifies the factorial division:
nCr = (n × (n-1) × ... × (n-r+1)) / (r × (r-1) × ... × 1)
This method involves multiplying the first r terms of the descending sequence from n and dividing by the factorial of r.
3. Using Recursive Relationship
The recursive relationship shows how combinations grow:
nCr = (n-1)C(r-1) + (n-1)Cr
This can be used to build a table of combinations for small values of n and r.
Worked Examples
Example 1: 5C2 (5 choose 2)
Using the factorial formula:
- 5! = 5 × 4 × 3 × 2 × 1 = 120
- 2! = 2 × 1 = 2
- (5-2)! = 3! = 6
- 5C2 = 120 / (2 × 6) = 120 / 12 = 10
There are 10 ways to choose 2 items from a set of 5.
Example 2: 6C3 Using Multiplicative Formula
- Multiply the first 3 terms of the descending sequence from 6: 6 × 5 × 4 = 120
- Divide by 3! (3 × 2 × 1 = 6): 120 / 6 = 20
There are 20 ways to choose 3 items from a set of 6.