EDIT: I enjoyed reading every last bit of the chris/kirjava debate.
How does CLL/ELL and OLL/PLL overlap affect probabilities, if the discussion is still open.
The reason it affects probabilities is that the two methods have some overlapping situations.
Considering your solving method to be OLL/PLL
and nothing else, you have the following possibilities for the LL.
1) You must perform an OLL case, followed by the fact that you must perform a PLL case.
2) You skip the OLL step, but must still perform the PLL case.
3) You must perform the OLL case, but you skip the PLL step.
4) You skip both the OLL and PLL steps.
Now for CLL/ELL only and
nothing else you have the following possibilities:
1) You must perform the CLL case, followed by the fact that you must perform the ELL case.
2) You skip the CLL step, but you must perform the ELL case.
3) You must perform the CLL case, but you skip the ELL step.
4) You skip both the CLL and ELL steps.
So now let's consider the method: OLL/PLL or CLL/ELL. The probabilities are affected because you have some overlap of the cases
between methods at the OLL step.
1) You have either a CLL or OLL case, but neither case was skipped. If you execute CLL, then followup with ELL. If you execute OLL, then follow up with PLL.
2) You have either a CLL or OLL case, but neither case was skipped. You perform a CLL case, then the ELL step is skipped.
3) You have either a CLL or OLL case, but neither case was skipped. You perform a OLL case, then the PLL step is skipped.
Ok the next steps are overlap steps.
4) You skip CLL, but do
not skip the full OLL. You perform the correct ELL case to solve the LL.
5) You skip OLL, but do
not skip the full CLL step. You perform the correct PLL to solve the LL.
6) You skip the LL (with the possibility of a necessary AUF to solve the cube).
--------
Ok so now to convince you that the method of combining both methods together has a higher probability of 1LLL I am going to actually calculate the probability of skipping at least one step in each method.
Now for OLL/PLL methods the probability of skipping either OLL, or PLL, or possibly both, is:
1 - (71/72)*(215/216) = 287 / 15552
Now for CLL/ELL methods.
The probability of skipping either CLL, or ELL, or possibly both, is:
1 - (161/162) * (95/96) = 257 / 15552
Ok now for OLL/PLL and CLL/ELL combined method.
The chance for either a 1LLL or a full LL skip is the chance of getting any of either cases: 2, 3, 4, 5 or 6 from my list of the combined method above.
------
Lemma to help for cases 2 and 3.
We need to know the probability of getting a LL that has neither a OLL nor CLL skip. This is:
1 - (1 / 216 + 1 / 162 - 48 / 62208)
1 - (288 / 62208 + 384 / 62208 - 48 / 62208)
1 - (624 / 62208)
1283 / 1296
------
------
Lemma for case #4
4) You skip CLL, but do not skip the full OLL.
This probability is:
(1/162) * (7/8) = 7 / 1296
------
------
Lemma for case #5
5) You skip OLL, but do not skip the full CLL step.
This probability is:
(1/216) * (5/6) = 5 / 1296
------
So the probability of a 1LLL (or LL skip) with the CLL/ELL or OLL/PLL combined method is:
P(1LLL) = P(case #2) + P(case #3) + P(case #4) + P(case #5) + P(case #6)
P(1LLL) = (1283/1296) * (1/96) + (1283/1296) * (1/72) + (7/1296) * (95/96) + (5/1296) * (71/72) + (1/15552)
P(1LLL) = 115 / 3456
(115 / 3456) > (287 / 15552) > (257 / 15552)
OR
in prettier form:
3.3% (CLL/ELL or OLL/PLL) > 1.8% OLL/PLL > 1.7% CLL/ELL
So the chance is nearly
double that you get a 1LLL (or 0LLL) compared to either OLL/PLL method alone, or CLL/ELL method alone.
--edit--
Actually, I just realized that this depends on the frequency (call this q) that you choose between cases 2 and 3 as I list them for CLL/ELL or OLL/PLL methods. I will take a look at this more in depth when I get home tonight. But 3.3% is
NOT the exact answer using both methods, because of the choice you have between cases 2 and 3. I will fix this tonight.
--edit--
Chris