मुफ्त क्रमगुणित कैलकुलेटर
किसी संख्या का क्रमगुणित (फैक्टोरियल n!) निकालें। संख्या दर्ज करके तुरंत परिणाम पाएं।
Factorial Val
5,040
N Minus 1 Factorial720
सूत्र
## How to Calculate a Factorial ### Formula **n! = n × (n-1) × (n-2) × ... × 2 × 1** Special cases: - **0! = 1** (by definition) - **1! = 1** Factorials grow extremely fast. 10! = 3,628,800 and 20! = 2,432,902,008,176,640,000.
हल किया गया उदाहरण
Calculate 7!
- 017! = 7 × 6 × 5 × 4 × 3 × 2 × 1
- 02= 42 × 5 × 4 × 3 × 2 × 1
- 03= 210 × 4 × 3 × 2 × 1
- 04= 840 × 3 × 2 × 1
- 05= 2520 × 2 × 1
- 06= 5040
अक्सर पूछे जाने वाले प्रश्न
What is a factorial?
A factorial (written as n!) is the product of all positive integers from 1 to n. For example, 5! = 5 × 4 × 3 × 2 × 1 = 120.
Why is 0! equal to 1?
By convention and mathematical consistency, 0! = 1. This is needed for formulas like combinations to work correctly: C(n,0) = n! / (0! × n!) = 1.
सीखें