Difference between revisions of "2020 AMC 12B Problems/Problem 24"

(Solution 1)
(Redirected page to 2020 AMC 10B Problems/Problem 25)
(Tag: New redirect)
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
Let <math>D(n)</math> denote the number of ways of writing the positive integer <math>n</math> as a product<cmath>n = f_1\cdot f_2\cdots f_k,</cmath>where <math>k\ge1</math>, the <math>f_i</math> are integers strictly greater than <math>1</math>, and the order in which the factors are listed matters (that is, two representations that differ only in the order of the factors are counted as distinct). For example, the number <math>6</math> can be written as <math>6</math>, <math>2\cdot 3</math>, and <math>3\cdot2</math>, so <math>D(6) = 3</math>. What is <math>D(96)</math>?
+
#REDIRECT [[2020 AMC 10B Problems/Problem 25]]
 
 
<math>\textbf{(A) } 112 \qquad\textbf{(B) } 128 \qquad\textbf{(C) } 144 \qquad\textbf{(D) } 172 \qquad\textbf{(E) } 184</math>
 
 
 
==Solution 1==
 
To make a product of <math>n</math>, we can either have just <math>n</math>, or we can have a divisor <math>d</math> of <math>n</math>, <math>1 < d < n</math>, followed by a way to make a product of <math>\frac{n}{d}</math>. Thus, <math>D(n) = 1 + \sum_{d | n, d > 1} D \left(\frac{n}{d} \right)</math> for all possible <math>d</math>. It's easy to calculate <math>D(n)</math> for all powers of <math>2</math>, since powers of <math>2</math> only have powers of <math>2</math> as divisors. We have
 
<cmath>D(2) = 1</cmath>
 
<cmath>D(4) = 2</cmath>
 
<cmath>D(8) = 4</cmath>
 
<cmath>D(16) = 8</cmath>
 
<cmath>D(32) = 16</cmath>
 
Now we will calculate <math>D(n)</math> for all <math>n</math> in the form <math>3 \cdot 2^k</math>, for <math>k \geq 0</math>. Note that each divisor of <math>3 \cdot 2^k</math> is either of the form <math>2^j</math> or <math>3 \cdot 2^j</math>. Therefore, to calculate each <math>D(3 \cdot 2^k)</math>, we will sum the first <math>k</math> values in both the tables we created, and add <math>1</math>. We have
 
<cmath>D(3) = 1</cmath>
 
<cmath>D(6) = 3</cmath>
 
<cmath>D(12) = 8</cmath>
 
<cmath>D(24) = 20</cmath>
 
<cmath>D(48) = 48</cmath>
 
<cmath>D(96) = \boxed{\textbf{(A) }112}</cmath>
 
 
 
==Solution 2==
 
Bash.
 
Since <math>96=2^5\times 3</math>, for the number of <math>f_n</math>, we have the following cases:
 
 
 
Case 1: <math>n=1</math>, we have <math>\{f_1\}=\{96\}</math>, only 1 case.
 
 
 
Case 2: <math>n=2</math>, we have <math>\{f_1,f_2\}=\{3,2^5\}, \{6,2^4\},...,\{48,2\}</math>, totally <math>5\cdot 2!=10</math> cases.
 
 
 
Case 3: <math>n=3</math>, we have <math>\{f_1,f_2,f_3\}=\{3,2^3,2^2\},\{3,2^1,2^4\},\{6,2^2,2^2\},\{6,2^3,2^1\}, \{12,2^2,2^1\},\{24,2,2\}</math>, totally <math>\frac{3!}{2!}\cdot 2+4\cdot 3!=30</math> cases.
 
 
 
Case 4: <math>n=4</math>, we have <math>\{f_1,f_2,f_3,f_4\}=\{3,2^2,2^2,2\},\{3,2^3,2,2\},\{6,2^2,2,2\},\{12,2,2,2\}</math>, totally <math>\frac{4!}{2!}\cdot 3+\frac{4!}{3!}=40</math> cases.
 
 
 
Case 5: <math>n=5</math>, we have <math>\{f_1,f_2,f_3,f_4,f_5\}=\{3,2^2,2,2,2\},\{6,2,2,2,2\}</math>, totally <math>\frac{5!}{3!}+\frac{5!}{4!}=25</math> cases.
 
 
 
Case 6: <math>n=6</math>, we have <math>\{f_1,f_2,f_3,f_4,f_5,f_6\}=\{3,2,2,2,2,2\}</math>, totally <math>\frac{6!}{5!}=6</math> cases.
 
 
 
Thus, add all of them together, we have <math>1+10+30+40+25+6=112</math> cases. Put <math>\boxed{\textbf{(A) }112}</math>.
 
 
 
~FANYUCHEN20020715
 
 
 
==See Also==
 
 
 
 
 
{{AMC12 box|year=2020|ab=B|num-b=23|num-a=25}}
 
{{MAA Notice}}
 

Revision as of 21:24, 12 February 2020