First, solve the system of inequality:
t: hours tutoring Math
c: hours cleaning library
t + c <= 20
10t + 15c >= 240
Replace t <= 20 - c in second inequality:
10 (20 - c) + 15c >= 240
200 - 10c + 15c >= 240
200 + 5c >= 240
5c >= 240 - 200
5c >= 40
c >= 40 / 5
c >= 8
t <= 20 - c
t <=20 - 8
t <= 12
Then, analyze which combinations are correct, and satisfy:
t <= 12
c >= 8
10t + 15c >= 240
first combination:
t = 9 <= 12
c = 10 >= 8
10(9) + 15(10)
90 + 150 = 240
240 >= 240
CORRECT COMBINATION
second combination:
t = 10 <= 12
c = 10 >= 8
10(10) = 15(10)
100 + 150
250 >= 240
CORRECT COMBINATION
third combination:
t = 11 <= 12
c = 8 >= 8
10(11) + 15(8)
110 + 120
230 < 240
INCORRECT. Doesn't satisfy.
forth combination:
t = 12 <= 12
c = 8 >= 8
10(12) + 15(8)
120 + 120
240 >= 240
CORRECT COMBINATION
fifth combination
t = 13 > 12
INCORRECT. Doesn't satisfy.
sixth combination:
t = 14 > 12
INCORRECT. Doesn't satisfy.
So, the correct combinations are First, Second and Fourth.