Given the 3-SAT problem with $v$ variables and $c$ clauses:
Is there a clause to variable ratio for which the 3SAT problem is 'easy' i.e. solvable in polynomial time?
We are assuming the 3-SAT instances are not trivially separable. We define a 3-SAT instance as separable if it can be separated into two subset of clauses $c_0$ and $c_1$ ($c=c_0+c_1$) such that $c_0$ and $c_1$ have no common variables (i.e. they are effectively two separate 3-SAT instances).
The above assumption is to avoid adding dummy clauses and variables to adjust the clause to variable ratio for any given problem instance.