As in the Squares and Circles game, here too one is presented with a row of shapes. Each shape is either a square, or a circle, or a triangle. A move consists in selecting any two different shapes. The puzzle has two variants depending on what happens next.
Move with elimination
Two selected shapes are replaced with a single one of the remaining variety. The question here is whether it's always possible to reduce the configuration to a single shape. If so, what shape might it be?
Move without elimination
Two selected shapes are replaced by two shapes of the remaining variety. The question is whether or not it's possible to achieve the configuration with identical shapes only. If yes, what shape might it be?
In both cases, provided the required state is attainable, how do you get there?
Move without elimination
As before, but now a move may convert (s, c, t) into one of (s-1, c-1, t+2),(s-1, c+2, t-1), or (s+2, c-1, t-1). Therefore, the difference of any two numbers remain invariant modulo 3. In this case, a necessary condition to get a row of triangles is s = c (mod 3). Is it a sufficient condition?
The latter problem appears in a different guise in [Cofman, p. 97] with a reference to Kvant (1985). Chameleons on an island come in three colors. They wonder and meet in pairs. When two chameleons of different colors meet, they both change to the third color. Given initial amounts of the lizards of each color are 13, 15, and 17, may this happen that, after a while, all of them acquire the same color? [Tao, p. 83], too, discusses this variant with a reference the Tournaments of Towns competition (1989). We consider two solutions to that problem elsewhere.