How was the rule of absorption applied to the following logical expression?
$$ (A \land \neg B \land C) \lor (A \lor B \lor \neg C) \lor (\neg A \land B) \equiv (A \lor B \lor \neg C) \lor (\neg A \land B).$$
The step is not really clear to me, and I hope someone can explain it.
Using associativity, $$ (A \wedge \neg B \wedge C) \vee (A \vee B \vee \neg C) \vee (\neg A \wedge B) = ((A \wedge \neg B \wedge C) \vee A) \vee (B \vee \neg C)\vee (\neg A \wedge B). $$ Now, by absorption and associativity, $$(A \wedge \neg B \wedge C) \vee A = (A \wedge (\neg B \wedge C)) \vee A = A,$$ and the expression becomes $$A \vee (B \vee \neg C)\vee (\neg A \wedge B),$$ which is the desired result, using associativity again.