Let P(x) and Q(x) be arbitrary predicates. Which of the following statements is always TRUE?
1.((∀x(P(x) ∨ Q(x)))) ⟹ ((∀xP(x)) ∨ (∀xQ(x)))
2.(∀x(P (x) ⟹ Q (x))) ⟹ ((∀xP(x)) ⟹ (∀xQ(x)))
3.(∀x(P(x)) ⟹ ∀x (Q(x))) ⟹ (∀x(P(x) ⟹ Q(x)))
4.(∀x(P(x)) ⇔ (∀x (Q(x)))) ⟹ (∀x(P(x) ⇔ Q(x)))
How to approach such questions ,I tried with the second option and I couldn't get that how is it valid since for all quantifier is not distributive over disjunction so how can we write ∀x(~P(x)∨Q(x)) as ∀x(~P(x))∨∀x(Q(x)) , so If I try converting from LHS to RHS then I will have to distribute for all quantifier over disjunction which I can't do so how is option 2 valid ?