题目
If n is a positive integer and the product of all integers from 1 to n, inclusive, is a multiple of 990, what is the least possible value of n?
解析
如果\(n\)是一个正整数,并且从\(1\)到\(n\)(包括\(n\))的所有整数的乘积是\(990\)的倍数,那么\(n\)的最小可能值是多少?
- 首先对\(990\)进行分解质因数,\(990=2\times3^{2}\times5\times11\)。
- 我们知道\(n!\)要能被\(990\)整除,\(n!\)需要包含\(990\)的所有质因数。
- 从\(1\)开始计算阶乘:
- \(10!=1\times2\times3\times4\times5\times6\times7\times8\times9\times10\),其中质因数包含\(2\)、\(3^{2}\)、\(5\),但是没有\(11\)。
- \(11!=10!\times11\),此时包含了\(990\)的所有质因数\(2\)、\(3^{2}\)、\(5\)和\(11\)。
所以\(n\)的最小可能值是\(11\),答案为B。