Let us first consider an example, say the following formula .
To understand why the proposed algorithm solves 2-SAT in polynomial time, let us see what happens
Since is satisifiable if and only if is assigned true, we get a residual formula –
Note that every clause that remains is either a unit clause, or was present in originally. In general, this is also the case,
if all the clauses of the same size, we chose just one variable randomly and then expand on it, and get that every clause that remains is either a unit clause or was present in originally.
When unit clauses are present, we expand on those variables, by the algorithm. In this example, we see that Y must be assigned false, and expanding we get: 2
Again, the remaining non-unit clauses were all present in ;
in fact, this must be the case since the algorithm modifies clauses by deleting literals. Crucially, because of this fact, the residual formula is satisfiable if and only if was. Thus, there is no need to backtrack, and 2-SAT can be solved by a linear sequence of linear expansions.
In the original backtracking algorithm, this corresponds to skipping the second call to expand whenever the first call returns a non-empty result.