How would i prove a conditional in this form:
$ A \rightarrow (B \vee C)$
through 'algebraic' manipulations i come up with the equivalence
$ A \rightarrow (B \vee C)$ $\Leftrightarrow$ $( A \wedge ¬B \rightarrow C)\wedge (A \wedge ¬C \rightarrow B)$
So, to prove $ A \rightarrow (B \vee C)$ one must prove $ A \wedge ¬B \rightarrow C$ and $A \wedge ¬C \rightarrow B$ just like proving biconditionals? or there is an easier way to do so?
Example:
Proposition: Suppose $ a, b \in N$. If $gcd(a, b) > 1$, then $b|a$ OR $b$ is not prime.
Proof:
Suppose $gcd(a, b) > 1$ and b $\not|$ $a$
...
Therefore, $b$ is not prime.
Now, suppose that $gcd(a, b) > 1$ and $b$ is prime.
...
therefore, $ b|a$
Q.E.D.
thanks in advance and sorry for the bad english.