When MAA can't decide between geo and combo
Source: 2022 AIME II Problem 9
February 17, 2022
AMCAIMEAIME II
Problem Statement
Let and be two distinct parallel lines. For positive integers and , distinct points lie on , and distinct points lie on . Additionally, when segments are drawn for all and , no point strictly between and lies on more than two of the segments. Find the number of bounded regions into which this figure divides the plane when and . The figure shows that there are 8 regions when and .
[asy]
import geometry;
size(10cm);
draw((-2,0)--(13,0));
draw((0,4)--(10,4));
label("",(-2,0),W);
label("",(0,4),W);
point A1=(0,0),A2=(5,0),A3=(11,0),B1=(2,4),B2=(8,4),I1=extension(B1,A2,A1,B2),I2=extension(B1,A3,A1,B2),I3=extension(B1,A3,A2,B2);
draw(B1--A1--B2);
draw(B1--A2--B2);
draw(B1--A3--B2);
label("",A1,S);
label("",A2,S);
label("",A3,S);
label("",B1,N);
label("",B2,N);
label("1",centroid(A1,B1,I1));
label("2",centroid(B1,I1,I3));
label("3",centroid(B1,B2,I3));
label("4",centroid(A1,A2,I1));
label("5",(A2+I1+I2+I3)/4);
label("6",centroid(B2,I2,I3));
label("7",centroid(A2,A3,I2));
label("8",centroid(A3,B2,I2));
dot(A1);
dot(A2);
dot(A3);
dot(B1);
dot(B2);
[/asy]