I found a copy of Bell's paper, in which he even makes the case for a spin axis as the hidden variable. Then he proceeds in (10) to declare the wrong sum.

The actual sum is 1-(x/(pi-x)). As explained here

Individual Correlations(right)

The right side graph more represents a Stern-Gerlach device, that detects 50% left or 50% right within an arc. Then measuring that against another similar arc. Where the arcs do not overlap at all, there is no chance of correlation, and those values are thrown out. For each value which is then within that arc, they may get transformed by the first filter (the semicircle that does not move), then it can change, and become a vector that is also outside of the correlation range, so another of that same amount is removed.

The ratio of blue to green is the actual ratio one would expect; (2-2x)/(2-x), so the blue circle is 2-2x where 2 is 1/2 of the circle, and 4 is the total circle, but +/-1 are equivalent to 90 degrees. The green arc is then just 2-x.

There are two half circle arcs, one that's fixed, with a line across the bottom, and a 180 degree arc above. The second rotates towards the left, and ends at the blue triangle. The portion that cannot correlate with filters is removed from both arcs. Then of those that make it through the arc, the amount of extended overlap is removed again. The ratio of actual occurances to possible occurances is pi-2x / pi-x or 1-x/(pi-x).

Polarizar Graph(left)

The left graph is polarizers, the slider rotates through 90 degrees. The slider to the left is 0 degrees and middle is 45 degrees. At 45 degrees, the preferred correlation becomes non-correlation; and the divisor for how much goes through continues to increase. This is noted with a darker color.

For a stack of polarizers, this was harder to graph, and I suspect the fractions that are related/removed can be drawn better. But in this case the blue arc's function is different for 1/2 of the rotations, that where both polarizers are aligned, until they are 45 degrees, there is an expectation only against the same results; after degrees, the expectation switches, and becomes expectation of failure. This switch makes the divisor go from 1 to 0.5 at 45 degrees. and then return to 1; in the end, making the shrinking blue arc count for less; but overall, allowing more same-same correlations at very high angles than Quantum Mechanics predicts.


See also for SG
 
(Math for Left side two polarizers)
x = degrees/90;

if( 1-2*x > 0 )  // 0 to 45 degrees is > 0  45 to 90 degrees is < 0
	percent = (100/4 * (1+(1-2*x)/(1-x)))  // divisor slowly decreases to 0.5
else
	percent = (100/4 * (1-x)/x)   // divisor slowly increases after 0.5

See Also