20!
- Number
- 20
n!24,32,90,20,08,17,66,40,000
known value: 20! = 2,432,902,008,176,640,000. Written in exponential form because the decimal literal is past MAX_SAFE_INTEGER and would not round-trip through the parser.
Open this exampleFactorials up to 170, which is where a double-precision float stops being able to hold the answer.
Also called: n factorial calculator, 5 factorial.
20! = 24,32,90,20,08,17,66,40,000.
The product of every integer from one to n. Zero factorial is one by convention and by necessity. It is the empty product, and defining it otherwise would break the combination formula at its boundary.
n! = 1 * 2 * ... * nEach of these is asserted on every build. If a change to the engine ever moved one of these answers, the build would fail before the page could print it.
n!24,32,90,20,08,17,66,40,000
known value: 20! = 2,432,902,008,176,640,000. Written in exponential form because the decimal literal is past MAX_SAFE_INTEGER and would not round-trip through the parser.
Open this examplen!1
boundary: the empty product
Open this examplen!1
degenerate case
Open this example