Factorial Calculator: solve factorial problems step-by-step. Clear formula, worked example, and FAQs included.
A combinations and permutations calculator counts the number of ways to select or arrange items from a set. Permutations count ordered arrangements; combinations count unordered selections. These calculations underpin probability theory, statistics, cryptography, and combinatorics. Factorials (n!) are the foundation: n! = n × (n−1) × ... × 1. Percentage Calculator and Ratio Calculator provide related tools.
Combinations: C(n,r) = n! ÷ (r! × (n−r)!)
Permutations: P(n,r) = n! ÷ (n−r)!
Factorial: n! = n × (n−1) × ... × 2 × 1; 0! = 1
Example: Choosing 3 from 10. C(10,3) = 120 (unordered). P(10,3) = 720 (ordered).
Use combinations when order doesn't matter: selecting a committee, choosing lottery numbers, picking a subset. Use permutations when order matters: rankings, passwords, sequences. The ratio P(n,r)/C(n,r) = r! — permutations always exceed combinations by a factor of r! for the same n and r.
Combinatorial calculations are exact for integer inputs. For very large factorials, numerical overflow may occur — use logarithmic methods for n > 170. This calculator is for educational purposes.