A Lot of Symbols
Source:
June 27, 2011
geometryparallelogram
Problem Statement
Three 's and a will balance nine 's. One will balance a and a .
[asy]
unitsize(5.5);
fill((0,0)--(-4,-2)--(4,-2)--cycle,black);
draw((-12,2)--(-12,0)--(12,0)--(12,2));
draw(ellipse((-12,5),8,3)); draw(ellipse((12,5),8,3));
label("",(-12,6.5),S);
label("",(12,5.2),N);
label("",(12,5.2),S);
fill((44,0)--(40,-2)--(48,-2)--cycle,black);
draw((34,2)--(34,0)--(54,0)--(54,2));
draw(ellipse((34,5),6,3)); draw(ellipse((54,5),6,3));
label("",(34,6.5),S);
label("",(54,6.5),S);[/asy]How many 's will balance the two 's in this balance?
[asy]
unitsize(5.5);
fill((0,0)--(-4,-2)--(4,-2)--cycle,black);
draw((-12,4)--(-12,2)--(12,-2)--(12,0));
draw(ellipse((-12,7),6.5,3)); draw(ellipse((12,3),6.5,3));
label("",(-12,8.5),S);
label("",(12,4.5),S);[/asy]