Please the highlighted part in the image below. I don't understand why w(c2) must be larger than s(c1, c2) considering s(c1, c2) is counting the position where c1 + c2 = 0, c1 != 0 and c2 != 0 while w(c2) is only counting position where w(c2) != 0.
Should s(c1, c2) be larger than w(c2)?
Thanks for helping out!

$s(c_1, c_2)$ is counting the positions where all three of the conditions hold at the same time, while $w(c_2)$ is counting the positions where the third condition holds. Since we can't have all three conditions holding without the third condition holding, we must have $s(c_1,c_2) \leq w(c_2)$.