Kostenloser Fakultätsrechner
Berechne die Fakultät einer Zahl (n!). Finde das Produkt aller positiven ganzen Zahlen bis n.
Factorial Val
5,040
N Minus 1 Factorial720
Formel
## 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.
Lösungsbeispiel
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
Häufig Gestellte Fragen
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.
Lernen