Suppose $A(x),B(x),C(x)$ are statements. (For the purpose of my question, we don't need to specify what exactly they are)
How to show that $\bigl(A(x) \land B(x) \bigr)\land C(x)$ is equivalent to $A(x) \land \bigl(B(x)\land C(x) \bigr)?$
Surefire way to do so would be to generate truth table, yet I would like to find more concise way to prove that.
This is what I've tried:
Let's denote statement $\bigl(A(x) \land B(x) \bigr)\land C(x)$ as $(1)$ and statement $A(x) \land \bigl(B(x)\land C(x) \bigr)$ as $(2)$
Required to prove that $(1) \iff (2)$
$(\rightarrow)$ Let x be some value such that $(1)$ is true and $(2)$ is false. Since $(1)$ is true, all statements must be true, but for $(2)$ to be false, at least one statement must be false. Hence if $(1)$ is true, then $(2)$ is true.
$(\leftarrow)$ Suppose $(2)$ is true. Suppose $(1)$ is false. Since $(2)$ is true, it follows that all statements are true, but for $(1)$ to be false, at least one statement must be false, hence contradiction. In other words, if $(2)$ is true, then $(1)$ is true.
Therefore, $(1) \iff (2)$ and thus $(1) \equiv (2)$. $\Box$
Is it correct? Are there better (and shorter) alternatives to prove the conjecture above?