Currently there may be errors shown on top of a page, because of a missing Wiki update (PHP version and extension DPL3).
Navigation
Topics Help • Register • News • History • How to • Sequences statistics • Template prototypes

Difference between revisions of "Factorial number"

From Prime-Wiki
Jump to: navigation, search
(restored)
 
m (Karbon moved page Factorial to Factorial number without leaving a redirect: name)
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
In [[mathematics]] symbolized by placing the "!" (known as the exclamation mark or bang) after a number, it represents multiplying a number by all [[whole number|whole numbers]] smaller than it.
 
In [[mathematics]] symbolized by placing the "!" (known as the exclamation mark or bang) after a number, it represents multiplying a number by all [[whole number|whole numbers]] smaller than it.
 +
 +
==Definition==
 +
A factorial is defined by the product
 +
:<math>n!  = 1 \cdot 2 \cdot 3 \cdots (n{-}2) \cdot (n{-}1) \cdot n</math>
 +
for <math>n &ge; 1</math>.
 +
 +
The same written as mathmatical product
 +
:<math>n!  = \prod_{i = 1}^n i.</math>
 +
 +
and as recurrence relation
 +
:<math> n! = n \cdot (n-1)!</math>
  
 
==Examples==
 
==Examples==
Line 5: Line 16:
 
:10! = 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1 = 3628800
 
:10! = 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1 = 3628800
  
Factorial numbers are those that are thus produced (in the cases above 120 and 362800 are factorial numbers.)
+
==See also==
 +
*[[Multifactorial number]]
  
 
==External links==
 
==External links==
*[https://en.wikipedia.org/wiki/Factorial Wikipedia]
+
*[[Wikipedia:Factorial|Factorial]]
[[Category:Math]]
+
[[Category:Number]]

Revision as of 12:47, 25 March 2019

In mathematics symbolized by placing the "!" (known as the exclamation mark or bang) after a number, it represents multiplying a number by all whole numbers smaller than it.

Definition

A factorial is defined by the product

[math]\displaystyle{ n! = 1 \cdot 2 \cdot 3 \cdots (n{-}2) \cdot (n{-}1) \cdot n }[/math]

for [math]\displaystyle{ n &ge; 1 }[/math].

The same written as mathmatical product

[math]\displaystyle{ n! = \prod_{i = 1}^n i. }[/math]

and as recurrence relation

[math]\displaystyle{ n! = n \cdot (n-1)! }[/math]

Examples

5! = 5 * 4 * 3 * 2 * 1 = 120
10! = 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1 = 3628800

See also

External links