Cal11 calculator

How to Do N C X on A Graphing Calculator

Reviewed by Calculator Editorial Team

Calculating combinations (n C x) is a fundamental operation in combinatorics. This guide explains how to perform this calculation on a graphing calculator, including step-by-step instructions, formulas, and examples.

What is n C x?

The notation "n C x" represents the number of combinations of n items taken x at a time. It's calculated using the combination formula:

Combination Formula:

n C x = n! / (x! × (n - x)!)

Where "!" denotes factorial, which is the product of all positive integers up to that number. Combinations are used in probability, statistics, and many other mathematical applications.

Using a Graphing Calculator

Most graphing calculators have built-in functions for combinations. Here's how to use them:

  1. Turn on your graphing calculator and clear any existing data.
  2. Press the [MODE] button to ensure you're in the correct mode (usually "Real" or "Normal").
  3. Press the [2ND] button, then the [MATH] button to access the probability functions.
  4. Select the combination function (often labeled as "nCr" or "C(n,r)").
  5. Enter the values for n and x separated by a comma (e.g., "5,2" for 5 C 2).
  6. Press the [ENTER] button to calculate the result.

Note: The exact button sequence may vary slightly depending on your calculator model. Refer to your calculator's manual if needed.

Manual Calculation

If your calculator doesn't have a built-in combination function, you can calculate it manually using factorials:

  1. Calculate the factorial of n (n!)
  2. Calculate the factorial of x (x!)
  3. Calculate the factorial of (n - x) ((n - x)!)
  4. Multiply x! and (n - x)! together
  5. Divide n! by the product from step 4

For example, calculating 5 C 2:

Step Calculation Result
1 5! = 5 × 4 × 3 × 2 × 1 120
2 2! = 2 × 1 2
3 (5-2)! = 3! = 3 × 2 × 1 6
4 2! × 3! = 2 × 6 12
5 5! / (2! × 3!) = 120 / 12 10

Worked Example

Let's calculate how many ways you can choose 3 fruits from a basket of 6 different fruits (6 C 3):

  1. Using the combination formula: 6 C 3 = 6! / (3! × (6-3)!) = 6! / (3! × 3!)
  2. Calculate factorials: 6! = 720, 3! = 6
  3. Plug into formula: 720 / (6 × 6) = 720 / 36 = 20

There are 20 different ways to choose 3 fruits from 6.

Interpretation: This means if you have 6 unique fruits and want to know how many different groups of 3 fruits you can make, the answer is 20 combinations.

FAQ

What is the difference between combinations and permutations?
Combinations (n C x) count groups where order doesn't matter, while permutations (n P x) count arrangements where order does matter. For example, the combination of fruits ABC is the same as BAC, but the permutation ABC is different from BAC.
When would I use combinations instead of permutations?
Use combinations when the order of selection doesn't matter (like choosing a team from a group of people). Use permutations when order matters (like arranging books on a shelf).
What if I try to calculate n C x where x > n?
The combination formula will result in 0 because you can't choose more items than you have. Most calculators will automatically return 0 in this case.
Can I use the combination formula for large numbers?
Yes, but be aware that factorials grow very quickly. Calculators typically have limits on how large numbers they can handle. For very large numbers, you might need to use approximation methods or programming tools.