learn.howToCalculate
learn.whatIsHeading
Factorial of n (written n!) is the product of all positive integers from 1 to n: n! = n × (n−1) × ... × 2 × 1. Factorials appear in combinations, permutations, probability, and Taylor series expansions.
단계별 가이드
- 10! = 1 (by definition)
- 21! = 1, 2! = 2, 3! = 6, 4! = 24, 5! = 120
- 3n! = n × (n-1)!
- 4C(n,k) = n! / (k! × (n-k)!) — factorials underlie combination formulas
풀어진 예시
입력
5!
결과
120
5×4×3×2×1 = 120
입력
10!
결과
3,628,800
About 3.6 million
입력
20!
결과
2.43 × 10¹⁸
Over 2 quintillion
계산할 준비가 되셨나요? 무료 Factorial Calculator n! 계산기를 사용해 보세요
직접 시도해 보세요 →