|
|
| (45 intermediate revisions by 18 users not shown) |
| Line 1: |
Line 1: |
| {{duplicate|[[2025 AMC 10A Problems/Problem 1|2025 AMC 10A #13]] and [[2025 AMC 12A Problems/Problem 1|2025 AMC 12A #5]]}}
| | #redirect [[2025 AMC 12A Problems/Problem 5]] |
| | |
| In the figure below, the outside square contains infinitely many squares, each of them with the same center and sides parallel to the outside square. The ratio of the side length of a square to the side length of the next inner square is <imath>k,</imath> where <imath>0 < k < 1.</imath> The spaces between squares are alternately shaded, as shown in the figure (which is not necessarily drawn to scale).
| |
| | |
| <asy>
| |
| unitsize(1cm);
| |
| | |
| int n = 25; // number of squares
| |
| real s = 6; // side length of largest square
| |
| real ratio = 0.8; // shrink factor for each square
| |
| real a = s; // current square side
| |
| | |
| for (int i = 0; i < n; ++i) {
| |
| real b = a * ratio; // next smaller square
| |
|
| |
| // Draw current square
| |
| draw(box((-a/2,-a/2),(a/2,a/2)));
| |
|
| |
| if (i % 2 == 1) {
| |
| fill(box((-a/2,-a/2),(a/2,a/2)), gray(1)); // light shading on the outside
| |
| } else {
| |
| fill(box((-a/2,-a/2),(a/2,a/2)), gray(0.4)); // dark shading on the outside
| |
| }
| |
|
| |
| a = b; // move to the next square
| |
| }
| |
| | |
| // Draw innermost square outline
| |
| draw(box((-a/2,-a/2),(a/2,a/2)));
| |
| </asy>
| |
| | |
| | |
| | |
| The area of the shaded portion of the figure is <imath>64\%</imath> of the area of the original square. What is <imath>k?</imath>
| |
| | |
| <imath>\textbf{(A) } \frac 35 \qquad \textbf{(B) } \frac {16}{25} \qquad \textbf{(C) } \frac 23 \qquad \textbf{(D) } \frac 34 \qquad \textbf{(E) } \frac 45</imath>
| |
| | |
| ==Solution 1==
| |
| Let the side length of the largest square be <imath>a,</imath> so it has area <imath>a^2.</imath> Hence, the second-largest square has area <imath>a^2k^2,</imath> the third-largest has <imath>a^2k^4,</imath> and so on.
| |
| | |
| It follows that the total shaded area is <cmath>a^2-a^2k^2+a^2k^4-a^2k^6+...=a^2(1-k^2+k^4-k^6+...)=a^2\dfrac{1}{1+k^2}.</cmath>
| |
| | |
| The ratio of the area of the shaded region to that of the original square is then <cmath>\dfrac{a^2\frac{1}{1+k^2}}{a^2}=\dfrac{1}{1+k^2}=\dfrac{64}{100}</cmath>
| |
| <cmath>\implies 64+64k^2=100\implies k^2=\dfrac{36}{64}\implies k=\boxed{\text{(D) }\dfrac{3}{4}}.</cmath>
| |
| | |
| ~Tacos_are_yummy_1
| |
| | |
| ===Remark===
| |
| We can just let <imath>a=1</imath> because the question deals with ratios to make calculations easier and have a less chance of messing up, getting the same answer <imath>\boxed{D}</imath>.
| |
| | |
| ~vgarg
| |
| | |
| ==Solution 2==
| |
| Let the side length of the first square be <imath>a</imath> and the second square be <imath>b</imath>. The area of the original square is <imath>a^2.</imath> The area of the outermost shaded region is <imath>a^2 - b^2.</imath> Let <imath>\frac{a}{b} = r.</imath> We have <imath>b = \frac{a}{r}.</imath> So the outermost shaded region area becomes:
| |
| | |
| <cmath>a^2 - b^2 = a^2 - \frac{a^2}{r^2}</cmath>
| |
| | |
| Now let the next square's side lengths be <imath>c</imath> and <imath>d.</imath> Similarly, <imath>c = \frac{b}{r} = \frac{a}{r^2}</imath> and <imath>d = \frac{c}{r} = \frac{a}{r^3}</imath>and the area of the next shaded region becomes:
| |
| <cmath>c^2 - d^2 = \frac{a^2}{r^4} - \frac{a^2}{r^6}</cmath>
| |
| | |
| Notice the pattern of adding <imath>4</imath> to the exponent. If this sequence continues infinitely, we ultimately get:
| |
| | |
| <cmath>(a^2 + \frac{a^2}{r^4} + \frac{a^2}{r^8} + ...) - (\frac{a^2}{r^2} + \frac{a^2}{r^6} + ...)</cmath>
| |
| | |
| Which can be simplified using the infinite geometric sequence formula. The problem also tells us that all of this equals <imath>64\% a^2,</imath> or <imath>\frac{16}{25}a^2:</imath>
| |
| | |
| <cmath>\frac{a^2}{1 - \frac{1}{r^4}} - \frac{\frac{a^2}{r^2}}{1 - \frac{1}{r^4}} = \frac{16}{25}a^2</cmath>
| |
| | |
| <cmath>\frac{1}{1 - \frac{1}{r^4}} - \frac{\frac{1}{r^2}}{1 - \frac{1}{r^4}} = \frac{16}{25}</cmath>
| |
| | |
| <cmath>r^2 = \frac{16}{9} \implies r = \frac{4}{3}</cmath>
| |
| Since the problem tells us the ratio must be less than one, we take the reciprocal to finally get <cmath>k = \frac{1}{r} = \boxed{\text{(D) }\dfrac{3}{4}}.</cmath>
| |
| | |
| ~[[User:grogg007|grogg007]]
| |
| | |
| ==Solution 3 (Faster)==
| |
| Let the outside square be of side length <imath>1</imath>, and let <imath>p = k²</imath>. Then the area of the square is <imath>1-p+p^{2}-p^{3}+p^{4}-p^{5} \dots</imath> or <imath>\left(1-p\right)\left(1+p^{2}+p^{4}+p^{6}+\dots\right)</imath>. Then, using geometric series, we get <imath>\left(1-p\right)\left(\frac{1}{1-p^{2}}\right)</imath> = <imath>\frac{1}{1+p}</imath>. This is equal to <imath>\frac{64}{100}</imath>. Therefore, <imath>1+p=\frac{25}{16}</imath>, so <imath>p = 9/16</imath> and <imath>k = \frac{3}{4}</imath>. Therefore, the answer is <imath>\boxed{(D)\frac{3}{4}}.</imath>
| |
| | |
| ~[[User:Moonwatcher22|Moonwatcher22]]
| |
| (Latex fixed by ~[[User:roblmin235|roblmin235]])
| |