Given any logical formulas $\alpha, \beta, \gamma$. Then:
$$ (\alpha \lor \beta) \land (\neg \beta \lor \gamma) \models (\alpha \lor \gamma) $$
Unlike for Modus Ponens and the chain rule, we were not given a name for this law.
If we work with classical logic, this a a propositional logic Hypothetical syllogism "in disguise".
In classical logic we have that $\lnot p \lor q$ is equivalent to : $p \rightarrow q$ is equivalent to and so that $p \lor q$ is equivalent to : $\lnot p \rightarrow q$.
So, your example :
$ (\alpha \lor \beta) \land (\lnot \beta \lor \gamma) \vDash (\alpha \lor \gamma)$
can be rewritten as :
$(\lnot \alpha \rightarrow \beta) \land (\beta \rightarrow \gamma) \vDash (\lnot \alpha \rightarrow \gamma)$.
Resolutionwould capture the idea pretty closely imo. – mafu Mar 03 '14 at 03:10