Art of Problem Solving

2025 AMC 12A Problems/Problem 5: Difference between revisions

Jonathanmo (talk | contribs)
Created page with "==Problem 13== 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; real s..."
 
Dc 1103 (talk | contribs)
Same problem
Tag: New redirect
Line 1: Line 1:
==Problem 13==
#REDIRECT [[2025 AMC 10A Problems/Problem 13]]
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;             
real s = 6;             
real ratio = 0.767;  //definitely not on purpose   
real a = s;             
 
for (int i = 0; i < n; ++i) {
  real b = a * ratio;                 
 
  // 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)); 
  } else {
    fill(box((-a/2,-a/2),(a/2,a/2)), gray(0.4)); 
  }
 
  a = b; 
}
 
 
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{3}{5} \qquad\textbf{(B) } \frac{16}{25} \qquad\textbf{(C) } \frac{2}{3} \qquad\textbf{(D) } \frac{3}{4} \qquad\textbf{(E) } \frac{4}{5}</imath>
 
[[2025 AMC 10A Problems/Problem 13|Solution]]

Revision as of 15:53, 6 November 2025