A group of college students is split into two teams, red shirts, and blue shirts. They participate in a contest. Each contestant plays each other contestant only once. There are 10x as many reds as there are blues. The red shirts win 4.5x as many games as the blue shirts. How many blue shirts are there?
This seems to be a combination of combinatorics, algebra, and logic (maybe?)... but I have no idea how to solve this.
Let's consider the case where all contestants play against each other. There are $b$ blue shirts and $10b$ red shirts.
There are $\binom b2$ games between two blue shirts, which are guaranteed to give the blue team a point. There are $\binom{10b}{2}$ games between two red shirts, which are guaranteed to give the red team a point. Finally, there are $10b^2$ games between a blue shirt and a red shirt, which could go either way.
So the blue team can earn at most $\binom b2 + 10b^2$ points, if they win all of those games; the red team must earn at least $\binom{10b}{2}$ points.
If the red team earns $4.5$ times as many points as the blue team, then we must have $$ \binom{10b}{2} \le \text{red score} = 4.5(\text{blue score}) \le 4.5 \left(\binom b2 + 10b^2\right). $$ Expanding this inequality gives us $$ 50b^2 - 5b \le 4.5 \left(\frac{21}{2}b^2 -\frac12 b\right) \iff 2.75b^2 - 2.75b \le 0 $$ which holds when $0 \le b \le 1$.
Ignoring the $b=0$ case where there are no participants at all, we must have $b=1$. In this case, there is $1$ blue shirt and $10$ red shirts. If the blue shirt wins all $10$ of their games while the red shirts get $45$ points from games with each other, then the conditions of the problem are satisfied. From the inequality above, we know that this is the only possible case.