Factorial Notation and Operations | 阶乘表示及其运算

📚 Factorial Notation and Operations | 阶乘表示及其运算

The factorial is one of the most fundamental notations in mathematics, especially in combinatorics, algebra, and calculus. For a non-negative integer \(n\), the factorial \(n!\) represents the product of all positive integers from 1 to \(n\). Understanding its notation and operations is essential for solving problems in IB Mathematics, from permutations and combinations to binomial expansions and series.

阶乘是数学中最基本的记号之一,尤其在组合数学、代数和微积分中十分重要。对于非负整数 \(n\),阶乘 \(n!\) 表示从 1 到 \(n\) 的所有正整数的乘积。掌握阶乘的表示及其运算,对于解决IB数学中的排列组合、二项式展开和级数等问题至关重要。


1. Definition of Factorial | 阶乘的定义

The factorial of a non-negative integer \(n\) is defined as the product of all positive integers less than or equal to \(n\). We write:

非负整数 \(n\) 的阶乘定义为所有不大于 \(n\) 的正整数的乘积,记作:

n! = n × (n − 1) × (n − 2) × ⋯ × 3 × 2 × 1

For example, \(5! = 5 × 4 × 3 × 2 × 1 = 120\). The factorial grows very quickly: \(10! = 3,628,800\).

例如,\(5! = 5 × 4 × 3 × 2 × 1 = 120\)。阶乘增长非常快:\(10! = 3,628,800\)。

By convention, the factorial of zero is defined as:

按照约定,零的阶乘定义为:

0! = 1

This convention is used to make formulas such as the binomial theorem and combinations work correctly for boundary cases.

这一约定是为了使二项式定理和组合数等公式在边界情况下依然成立。


2. Recursive Property | 递推性质

Factorials satisfy a recursive relationship that is extremely useful in simplification and proof:

阶乘满足一个递推关系,在化简和证明中非常有用:

n! = n × (n − 1)!

For instance, \(6! = 6 × 5! = 6 × 120 = 720\). This property allows us to express a factorial in terms of a smaller factorial, which is often helpful when simplifying algebraic fractions.

例如,\(6! = 6 × 5! = 6 × 120 = 720\)。这个性质允许我们用较小的阶乘表示较大的阶乘,在化简代数分式时非常有用。

The recursive property also justifies the value of \(0!\). Applying the formula with \(n = 1\) gives \(1! = 1 × 0!\), so \(1 = 1 × 0!\), hence \(0! = 1\).

递推性质也解释了 \(0!\) 的值。令 \(n = 1\),得到 \(1! = 1 × 0!\),即 \(1 = 1 × 0!\),因此 \(0! = 1\)。


3. Operations with Factorials | 阶乘的基本运算

Factorials do not distribute over addition or multiplication. For example, \( (a + b)! \neq a! + b! \) in general, and \( (a × b)! \neq a! × b! \). It is a common mistake to treat the factorial as a linear operation.

阶乘对加法或乘法没有分配律。一般来说,\((a + b)! \neq a! + b!\),且 \((a × b)! \neq a! × b!\)。常见的错误是把阶乘当作线性运算来处理。

The main operations we can perform with factorials are:

阶乘的主要运算包括:

  • Expansion: Write \(n!\) as a product of descending integers.
  • 收缩:将 \(n!\) 写成连续递减整数的乘积。
  • Factoring: Express a larger factorial in terms of a smaller one, e.g. \(n! = n(n − 1)!\).
  • 分解:用较小阶乘表示较大阶乘,例如 \(n! = n(n − 1)!\)。
  • Division: Simplify ratios such as \(\frac{n!}{k!}\) by cancelling common factors.
  • 除法:通过约去公共因子化简如 \(\frac{n!}{k!}\) 的分式。

When simplifying expressions involving factorials, always look for the largest common factorial factor that can be cancelled.

化简涉及阶乘的表达式时,应寻找可以约去的最大公共阶乘因子。


4. Simplifying Factorial Expressions | 化简阶乘表达式

Consider the expression \(\frac{10!}{7!}\). Using the recursive property, we write:

考虑表达式 \(\frac{10!}{7!}\)。利用递推性质,我们写成:

\(\frac{10!}{7!} = \frac{10 × 9 × 8 × 7!}{7!} = 10 × 9 × 8 = 720\)

Similarly, \(\frac{n!}{(n − 2)!} = n(n − 1)\), provided \(n \ge 2\).

类似地,\(\frac{n!}{(n − 2)!} = n(n − 1)\),其中 \(n \ge 2\)。

For expressions like \(\frac{(n + 1)!}{(n − 1)!}\), we expand both factorials until a common term appears:

对于如 \(\frac{(n + 1)!}{(n − 1)!}\) 的表达式,我们将两个阶乘展开直到出现公共项:

\(\frac{(n + 1)!}{(n − 1)!} = \frac{(n + 1) × n × (n − 1)!}{(n − 1)!} = n(n + 1)\)

This technique is central to solving many IB exam questions involving factorial ratios.

这一技巧是解决许多IB考试中阶乘比值问题的核心。


5. Factorials in Permutations and Combinations | 阶乘在排列组合中的应用

The number of ways to arrange \(r\) objects chosen from \(n\) distinct objects (permutations) is:

从 \(n\) 个不同物体中选取 \(r\) 个进行排列(排列数)的方法数为:

\(P(n, r) = \frac{n!}{(n − r)!}\)

The number of ways to choose \(r\) objects without regard to order (combinations) is:

不考虑顺序地从 \(n\) 个物体中选取 \(r\) 个(组合数)的方法数为:

\(\binom{n}{r} = \frac{n!}{r!(n − r)!}\)

These formulas are essential in probability and statistics. For example, the number of ways to deal a 5-card hand from a 52-card deck is \(\binom{52}{5} = \frac{52!}{5!47!}\).

这些公式在概率统计中至关重要。例如,从一副52张扑克牌中发5张牌的方法数是 \(\binom{52}{5} = \frac{52!}{5!47!}\)。

The binomial theorem also relies heavily on factorial notation:

二项式定理也密切依赖于阶乘记号:

\((a + b)^n = \sum_{r=0}^{n} \binom{n}{r} a^{n−r} b^r\)

Factorials appear inside binomial coefficients, making efficient manipulation of factorial expressions a key skill.

阶乘出现在二项式系数中,因此高效处理阶乘表达式是关键技能。


6. Solving Equations Involving Factorials | 求解含阶乘的方程

IB exam questions often ask you to solve equations such as:

IB考试题常要求解如下的方程:

\(\frac{(n + 2)!}{n!} = 42\)

First simplify the left side:

首先化简左边:

\(\frac{(n + 2)!}{n!} = (n + 2)(n + 1) = 42\)

Expanding gives \(n^2 + 3n + 2 = 42\), so \(n^2 + 3n − 40 = 0\). Factoring yields \((n + 8)(n − 5) = 0\), hence \(n = 5\) (since \(n\) must be non-negative).

展开得 \(n^2 + 3n + 2 = 42\),即 \(n^2 + 3n − 40 = 0\)。因式分解得 \((n + 8)(n − 5) = 0\),因此 \(n = 5\)(因为 \(n\) 必须为非负整数)。

When solving such equations, always check that the solution satisfies the domain of the factorial (non-negative integers).

解这类方程时,务必检查解是否满足阶乘的定义域(非负整数)。


7. Factorial Inequalities | 阶乘不等式

Some problems require comparing factorial expressions or solving inequalities. For example:

有些问题需要比较阶乘表达式或求解不等式。例如:

Show that \(n! > 2^n\) for all \(n \ge 4\).

This can be proved by induction. Base case: \(4! = 24 > 16 = 2^4\). Assume \(k! > 2^k\) for some \(k \ge 4\). Then \((k + 1)! = (k + 1)k! > (k + 1)2^k > 2 × 2^k = 2^{k + 1}\).

这可以用归纳法证明。基例:\(4! = 24 > 16 = 2^4\)。假设对某个 \(k \ge 4\) 有 \(k! > 2^k\)。那么 \((k + 1)! = (k + 1)k! > (k + 1)2^k > 2 × 2^k = 2^{k + 1}\)。

Factorial notation also appears in limits. For instance, \(\frac{n!}{n^n}\) tends to 0 as \(n\) grows, which is useful in analysis.

阶乘记号也出现在极限中。例如,\(\frac{n!}{n^n}\) 随 \(n\) 增大而趋向于0,这在分析中很有用。


8. Double Factorials and Related Notations | 双阶乘及相关记号

The double factorial is defined as the product of integers with the same parity:

双阶乘定义为具有相同奇偶性的整数乘积:

\(n!! = n × (n − 2) × (n − 4) × ⋯\)

For even \(n = 2k\), \( (2k)!! = 2^k k!\). For odd \(n = 2k − 1\), \( (2k − 1)!! = \frac{(2k)!}{2^k k!}\).

对于偶数 \(n = 2k\),\((2k)!! = 2^k k!\)。对于奇数 \(n = 2k − 1\),\((2k − 1)!! = \frac{(2k)!}{2^k k!}\)。

For example, \(6!! = 6 × 4 × 2 = 48\), and \(7!! = 7 × 5 × 3 × 1 = 105\).

例如,\(6!! = 6 × 4 × 2 = 48\),\(7!! = 7 × 5 × 3 × 1 = 105\)。

Another related notation is the falling factorial: \( (n)_r = n(n − 1)⋯(n − r + 1) = \frac{n!}{(n − r)!} \), which appears in calculus and combinatorics.

另一个相关记号是降阶阶乘:\((n)_r = n(n − 1)⋯(n − r + 1) = \frac{n!}{(n − r)!}\),出现在微积分和组合学中。


9. Common Mistakes and Pitfalls | 常见错误与陷阱

Students often make the following errors when working with factorials:

学生在处理阶乘时常犯以下错误:

Common Mistake Correct Approach
\((a + b)! = a! + b!\) Expand or simplify using recursive property; no linearity.
\(\frac{n!}{(n − 1)!} = n − 1\) Correct value is \(n\).
\(0! = 0\) \(0! = 1\).
Cancelling individual factors in \(\frac{(n + 2)!}{n!}\) as \(\frac{2!}{0!}\) \(\frac{(n + 2)!}{n!} = (n + 2)(n + 1)\).

Another common pitfall is forgetting that factorial is only defined for non-negative integers. Expressions like \((−1)!\) are undefined.

另一个常见陷阱是忘记阶乘只对非负整数有定义,如 \((−1)!\) 无定义。


10. Applications and Exam Tips | 应用与考试技巧

Factorials appear in the IB Maths syllabus primarily in the contexts of counting principles, binomial theorem, and series. When solving exam questions:

阶乘在IB数学大纲中主要出现在计数原理、二项式定理和级数等章节。解答考试题目时:

  • Look for cancellation opportunities: Write factorials in terms of the smallest factorial present.
  • 寻找约分机会:用最小的阶乘表示所有阶乘。
  • Use the definition: Do not try to compute large factorials fully unless necessary.
  • 利用定义:除非必要,不要完整计算很大的阶乘。
  • Check the domain: Ensure any variable in a factorial is a non-negative integer.
  • 检查定义域:确保阶乘中的变量是非负整数。
  • Practice with \(n\) rather than specific numbers: Algebraic manipulation with \(n!\) is faster and more reliable.
  • 多用 \(n\) 进行代数操作:用 \(n!\) 进行代数变换更快且更可靠。

Familiarity with factorial notation will also help in later topics such as Taylor series, where \(n!\) appears in the denominator of each term.

熟悉阶乘记号也有助于后续课题,例如泰勒级数中每项分母都含有 \(n!\)。


Published by TutorHao | Mathematics Revision Series | aleveler.com

更多咨询请联系16621398022(同微信)

Comments

屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from aleveler.com

Subscribe now to keep reading and get access to the full archive.

Continue reading

Exit mobile version