If we have a conjunctive linked expression where only the following clauses are allowed: $A_i, \quad \neg A_i, \quad A_i \vee \neg A_j, \quad \neg A_i \vee A_j$
Example: $A_1 \wedge (A_2 \vee \neg A_3) \wedge \neg A_3 \wedge (\neg A_2 \vee A_4) $ What's the easiest way to check for satisfiability or non-satitsfiability?
As for your example: $$ A_1\wedge(A_2\vee\neg A_3)\wedge\neg A_3\wedge(\neg A_2\vee A_4)\\ \equiv A_1\wedge \neg A_3\wedge(\neg A_2\vee A_4)\\ \cong \top\wedge\top\wedge(\top\vee\top)\\ \equiv \top\,\text{is satisfiable} $$
No tableau is needed in most examples, keep in mind that you may want to do step 4 more than one time (by removing clauses that contains $\top$ in between).
EDIT: This is a general solution to CNF-form.