Combination Calculator (nCr) | How to Use on a Scientific Calculator


Combination Calculator (nCr)

Calculate the number of combinations (often styled as “n choose r”) possible from a set of items. Enter the total number of items and the number you wish to choose to find the result. This tool is ideal for anyone learning how to use a combination in a scientific calculator.


The total number of distinct items in the set. Must be a non-negative integer.


The number of items to select from the set. Must be a non-negative integer and cannot exceed ‘n’.


Total Combinations (nCr)
120

Calculation Breakdown

Formula: n! / (r! * (n-r)!)

n! (10!): 3,628,800

r! (3!): 6

(n-r)! (7!): 5,040

Chart showing the number of combinations for different ‘r’ values.

What is a Combination?

A combination is a mathematical technique for determining the number of possible arrangements in a collection of items where the order of the selection does not matter. When you are selecting items and their sequence isn’t important, you are dealing with combinations. This is a fundamental concept in probability and statistics, often expressed as nCr, which means “n choose r”. For example, picking a team of 3 people from a group of 10 is a combination, because the team of Alice, Bob, and Carol is the same as the team of Carol, Alice, and Bob.

This contrasts with permutations, where the order of selection is crucial. Think of a “combination lock”; it should really be called a permutation lock because the order of the numbers (e.g., 10-25-17) must be exact. For anyone needing to understand how to use combination in a scientific calculator, grasping this distinction is the first step.

The Combination Formula and Explanation

To calculate the number of combinations, you use the nCr formula. It’s a cornerstone of combinatorics and is essential for anyone performing these calculations, whether by hand or using a scientific calculator.

nCr = n! / (r! * (n-r)!)

This formula is key to understanding how to use a combination in a scientific calculator, as this is the computation the calculator performs.

Variable Explanations
Variable Meaning Unit Typical Range
n The total number of different items in the set. Unitless (count) Any non-negative integer.
r The number of items to choose from the set. Unitless (count) A non-negative integer, where 0 ≤ r ≤ n.
nCr The resulting number of possible combinations. Unitless (count) A non-negative integer.
! The factorial operator (e.g., 5! = 5 * 4 * 3 * 2 * 1). N/A Applies to non-negative integers.

Practical Examples

Example 1: Forming a Committee

Imagine you need to form a student committee of 4 people from a group of 20 students. How many different committees can be formed?

  • Inputs: n = 20, r = 4
  • Units: The inputs are unitless counts of people.
  • Calculation: 20C4 = 20! / (4! * (20-4)!) = 20! / (4! * 16!) = 4,845
  • Result: There are 4,845 different possible committees.

Example 2: Selecting Books

You are at a library and want to check out 3 books from a reading list of 10. How many different selections can you make?

  • Inputs: n = 10, r = 3
  • Units: The inputs are unitless counts of books.
  • Calculation: 10C3 = 10! / (3! * (10-3)!) = 10! / (3! * 7!) = (10 * 9 * 8) / (3 * 2 * 1) = 120
  • Result: You can make 120 different selections of 3 books. For more complex calculations, see our Permutation Calculator.

How to Use This Combination Calculator

Using this calculator is simple and mirrors the process you would use on a physical device.

  1. Enter Total Items (n): In the first field, input the total number of distinct items you are choosing from.
  2. Enter Items to Choose (r): In the second field, input the number of items you want to select. The calculator will automatically ensure that ‘r’ is not greater than ‘n’.
  3. View the Result: The calculator instantly updates, showing the total number of combinations (nCr) in the highlighted result area.
  4. Analyze the Breakdown: Below the main result, you can see the intermediate values for n!, r!, and (n-r)!, which helps in understanding how the final answer was derived.
  5. Interpret the Visuals: The dynamic chart and table show how the number of combinations changes for different values of ‘r’, providing a visual understanding of the concept. For related concepts, explore our Probability Calculator.

Key Factors That Affect Combinations

Several factors influence the final combination count. Understanding them is crucial for interpreting results accurately.

  • Size of the Total Set (n): As ‘n’ increases, the number of combinations grows exponentially, assuming ‘r’ is constant and not an edge case.
  • Size of the Subset (r): The number of combinations is symmetric. The value of nCr peaks when ‘r’ is closest to n/2. For example, 10C4 is the same as 10C6.
  • The ‘r = 0’ or ‘r = n’ Case: There is only one way to choose zero items (by choosing none) and only one way to choose all items (by choosing all of them). So, nC0 = 1 and nCn = 1.
  • The ‘r > n’ Case: It’s impossible to choose more items than are available in the set. The result is always 0. Our calculator validates this.
  • Order Invariance: The most critical factor is that the order of selection does not matter. If it did, you would need to use a Permutation Calculator instead.
  • Repetition: This standard combination formula assumes that there is no repetition (an item cannot be chosen more than once). Calculations involving repetition require a different formula: (n+r-1)! / (r! * (n-1)!).

Frequently Asked Questions (FAQ)

1. What is the difference between a combination and a permutation?

A combination is a selection where order does not matter (e.g., a committee), while a permutation is a selection where order does matter (e.g., a password or race rankings).

2. How do I find the combination (nCr) button on my scientific calculator?

On most scientific calculators, such as a TI-84 or Casio, the nCr function is found in the math or probability menu. For a TI-84, press the [MATH] key, navigate to the PRB (Probability) menu, and select option 3 for nCr. On many Casio models, it’s a secondary function accessed by pressing [SHIFT] and then another key (often the division key).

3. What does 0! (zero factorial) equal?

By definition, 0! is equal to 1. This is a mathematical convention that allows formulas like the combination formula to work correctly when r=0 or r=n.

4. Can ‘n’ or ‘r’ be a fraction or a negative number?

No. In standard combinatorics, ‘n’ and ‘r’ must be non-negative integers, as they represent counts of objects.

5. Why does ‘n’ have to be greater than or equal to ‘r’?

Because you cannot choose more items than are available in the total set. Logically, the group you select from must be at least as large as the group you are selecting.

6. What is a real-life example of a combination?

A very common example is a lottery draw. When you pick 6 numbers from a set of 49, the order in which the balls are drawn doesn’t matter; you win as long as your selected numbers match the ones drawn. Another example is choosing toppings for a pizza. You can find more examples with our Word Problems Solver.

7. How is the combination formula related to Pascal’s Triangle?

Each number in Pascal’s Triangle is a combination value. The number in the n-th row and k-th position (starting from 0) is equal to nCk. This provides a geometric representation of binomial coefficients.

8. What is the maximum number this calculator can handle?

This calculator relies on standard JavaScript numbers. It can accurately calculate factorials up to a certain point (around 170!). For values of ‘n’ larger than that, it may produce ‘Infinity’ due to floating-point limitations. However, it can handle most practical, everyday combination problems.

© 2026 Your Website. All Rights Reserved. This tool helps you understand how to use combination in a scientific calculator for academic and practical purposes.




Leave a Reply

Your email address will not be published. Required fields are marked *