NUMBER THEORYArithmeticMathematics Calculator
!

Multifactorial: n!, n!!, n!!!, n!!!!

n!! multiplies by step 2 (nร—(n-2)ร—โ€ฆร—1 or 2). n!!! by step 3, n!!!! by step 4. Odd n!! ends at 1; even n!! ends at 2. Used in combinatorics and special functions.

Concept Fundamentals
Single factorial
n!
Double factorial
n!!
Triple factorial
n!!!
Multiply by k
Step k

Did our AI summary help? Let us know.

Odd n!! ends at 1; even n!! ends at 2. 7!! = 7ร—5ร—3ร—1 = 105; 8!! = 8ร—6ร—4ร—2 = 384. n! has n factors; n!! has ~n/2 factors.

Key quantities
Single factorial
n!
Key relation
Double factorial
n!!
Key relation
Triple factorial
n!!!
Key relation
Multiply by k
Step k
Key relation

Ready to run the numbers?

Why: Double factorial n!! appears in combinatorics, physics (Legendre polynomials), and special functions. Triple and quadruple extend the pattern. Odd vs even have different end points.

How: n!! = nร—(n-2)ร—โ€ฆร—1 (odd n) or ร—2 (even n). n!!! steps by 3, n!!!! by 4. Use BigInt for exact large results.

Odd n!! ends at 1; even n!! ends at 2.7!! = 7ร—5ร—3ร—1 = 105; 8!! = 8ร—6ร—4ร—2 = 384.

Run the calculator when you are ready.

Calculate MultifactorialEnter n and level k
multifactorial.sh
CALCULATED
$ multifactorial --n=7 --k=2
n
7
Level k
2
Result
105
Notation
7!!

Multiplication Chain

7 ร— 5 ร— 3 ร— 1
Multifactorial Calculator
7!! = 105
7 ร— 5 ร— 3 ร— 1
numbervibe.com
Share:

Comparison: All Levels for n = 7

Level Distribution

๐Ÿ“ Step-by-Step Breakdown

INPUTS
n
7
Level k
2
RESULT
Result
105
Chain
7 ร— 5 ร— 3 ร— 1
ext{Multiplication} ext{chain}

Comparison Table

LevelNotationValue
k = 17!5,040
k = 27!!105
k = 37!!!28
k = 47!!!!21

For educational and informational purposes only. Verify with a qualified professional.

๐Ÿงฎ Fascinating Math Facts

!

n!! = nร—(n-2)ร—โ€ฆร—1 or 2

โ€” Double factorial

๐Ÿ“

Odd n!! ends at 1; even at 2

โ€” Step pattern

๐Ÿ“‹ Key Takeaways

  • โ€ข n! (single): n ร— (nโˆ’1) ร— โ€ฆ ร— 1. Permutations of n objects.
  • โ€ข n!! (double): n ร— (nโˆ’2) ร— โ€ฆ ร— 1 or 2. Used in integrals, combinatorics.
  • โ€ข n!!!, n!!!!: Same pattern, stepping by 3 or 4. Slower growth.
  • โ€ข Semifactorial is another name for double factorial.
  • โ€ข Higher k = fewer factors = slower growth.

๐Ÿ’ก Did You Know?

๐Ÿ”ข7!! = 7ร—5ร—3ร—1 = 105. For even n, n!! = 2^(n/2) ร— (n/2)!Source: Combinatorics
๐Ÿ“Double factorials appear in Wallis product for ฯ€ and hypersphere volumes.Source: Analysis
๐ŸŽฒMultifactorials count restricted permutations.Source: Discrete Math
โš›๏ธ(2n-1)!! appears in quantum mechanics formulas.Source: Physics
๐Ÿ“‰Higher k = slower growth. n!!!! has ~n/4 factors vs n! with n factors.Source: Growth
!Semifactorial = double factorial, especially for odd n.Source: Notation

๐Ÿ“– How It Works

k-factorial: n ร— (nโˆ’k) ร— (nโˆ’2k) ร— โ€ฆ until the value reaches [1, k]. Single (k=1) is standard factorial. Double (k=2) steps by 2. Triple (k=3) steps by 3, etc.

๐Ÿ“ Worked Example: 7!!

Double factorial: 7!! = 7 ร— 5 ร— 3 ร— 1

Step 1: 7 ร— 5 = 35

Step 2: 35 ร— 3 = 105

Step 3: 105 ร— 1 = 105

Odd n ends at 1; even n (e.g. 8!!) ends at 2.

๐Ÿš€ Real-World Applications

๐Ÿ“ Wallis Product

ฯ€/2 = (2ร—2)/(1ร—3) ร— (4ร—4)/(3ร—5) ร— ... uses (2n-1)!!

๐Ÿ”ฌ Hypersphere

Volume of n-sphere involves double factorials.

โš›๏ธ Quantum Mechanics

Angular momentum formulas use (2n-1)!!

๐Ÿ“Š Combinatorics

Restricted permutations, alternating permutations.

๐Ÿ“ˆ Probability

Matching problems, derangement variants.

๐ŸŽฏ Number Theory

Central binomial coefficients.

โš ๏ธ Common Mistakes to Avoid

  • n!! โ‰  (n!)!: n!! is double factorial, not factorial of factorial.
  • Odd vs even: Odd n!! ends at 1; even n!! ends at 2. 7!!=7ร—5ร—3ร—1, 8!!=8ร—6ร—4ร—2.
  • Step size: n!!! steps by 3, not 2. 8!!! = 8ร—5ร—2 (not 8ร—6ร—4ร—2).
  • n=0 or 1: All k-factorials equal 1 for n=0,1.
  • Overflow: Keep n โ‰ค 500. Higher k helps (fewer factors).

๐ŸŽฏ Expert Tips

๐Ÿ’ก Compare Levels

Use the comparison table to see n!, n!!, n!!!, n!!!! side by side.

๐Ÿ’ก Odd vs Even

Odd n!! ends at 1; even n!! ends at 2. 7!!=7ร—5ร—3ร—1, 8!!=8ร—6ร—4ร—2.

๐Ÿ’ก Step Count

n! has n factors; n!! has ~n/2; n!!! has ~n/3; n!!!! has ~n/4.

๐Ÿ’ก BigInt

We use BigInt for exact results. Keep n โ‰ค 500.

๐Ÿ“Š Reference Table

LevelFormulaExample (n=7)
n!nร—(n-1)ร—...ร—15040
n!!nร—(n-2)ร—...ร—1 or 2105
n!!!nร—(n-3)ร—...ร—1,2,328
n!!!!nร—(n-4)ร—...ร—1-47

๐Ÿ“ Quick Reference

n!
Single
n!!
Double
n!!!
Triple
n!!!!
Quadruple

๐ŸŽ“ Practice Problems

5!! = ? Answer: 15 (5ร—3ร—1)
8!! = ? Answer: 384 (8ร—6ร—4ร—2)
6!!! = ? Answer: 18 (6ร—3)
9!!!! = ? Answer: 9 (9ร—5ร—1)

โ“ FAQ

What is n! vs n!!?

n! multiplies every integer from n down to 1. n!! multiplies every other: n, nโˆ’2, nโˆ’4, โ€ฆ down to 1 (odd) or 2 (even).

Where are double factorials used?

Calculus (Wallis product), combinatorics, physics (quantum angular momentum). Volume of n-sphere involves (2nโˆ’1)!!.

Why does n!!!! grow slower than n!?

Higher k means fewer factors. n! has n factors; n!!!! has about n/4 factors.

What is semifactorial?

Another name for double factorial (n!!), especially when n is odd.

Is n!! = (n!)?

No! n!! is double factorial. (n!)! would be factorial of factorial โ€” much larger.

What is 0!!?

0!! = 1 by convention, like 0! = 1.

Max n?

We support n โ‰ค 500. Higher k allows larger n (fewer factors).

๐Ÿ“Œ Summary

k-factorial n!^(k) multiplies n, nโˆ’k, nโˆ’2k, โ€ฆ down to 1 or k. Single (k=1) is standard factorial. Double (k=2) is common in analysis and physics. Higher k = slower growth.

โœ… Verification Tip

Check the multiplication chain: count factors and verify the product. For n!!, odd n should end with 1; even n with 2.

๐Ÿ”— Next Steps

Explore the Factorial Calculator for standard n!, or the Combination Calculator which uses factorials. The Permutation Calculator also uses n!.

โš ๏ธ Disclaimer: BigInt used for exact results. n โ‰ค 500. Educational use.

๐Ÿ‘ˆ START HERE
โฌ…๏ธJump in and explore the concept!
AI

Related Calculators