for example,we need show that if A and B are sets with A⊆B,then A⋃B.
1) $x \in A ⋃ B$
2) $(x \in A) \lor (x \in B)$
3) ∀$x(x \in A \to x \in B) $ --- by A⊆B given
4) $(x \in B) \lor (x \in B)$ ---we know that every x in A are also in B)
5) $(x \in B)$
6)$A ⋃ B⊆B$
Take other example, we have x which is domain consists of all people,
P(x) be "x is professor",Q(x) be "x is ignorant",R(x) be "x is in vain".
we have the proposition which are "No professors are are ignorant" and "All ignorant people are vain.".we have the followings:
1)∀$x(P(x) \to ¬Q(x)) $
2)∀$x(Q(x) \to R(x)) $
statement 1 is also equal to
∀$x(P(x) \to ¬(Q(x))) $
then we subtitute Q(x) by R(x),since statement 2 stated that every x in Q(x) is also in R(x).
finally we have,
∀$x(P(x) \to ¬(R(x))) $
which is incorrect.So my question why we cannot subtitute Q(x) by R(x)?
1.∀x(x∈A→x∈B) --- unwind definition of A⊆B
2.x∈A
3.{x}⊆A---subset that consist from x
4.{x}∈P(A)
5.x∈B ---from 1 and 2 using implication
6.{x}⊆B
7.{x}∈P(B)
Before using Universal Generalization ,How can we construct condition proof,i mean {x}∈P(B)→{x}∈P(A) or {x}∈P(A)→{x}∈P(B)?I mean the rule of picking premise to construct conditiobal statement.
– Moly Holy Feb 21 '20 at 10:02