I'm starting to learn Boolean algebra in the university, but I'm having difficulties trying to fully understand some rules.
1) If this expression “$A\Rightarrow B$” which is the same as saying as “$\lnot A \lor B$”, right? So take a look at this next expression:
$$\lnot(\lnot A \Rightarrow B) = (A \Rightarrow B) = \lnot A \lor B$$
My question is, does this “$A$” become negative once again in the last expression?
What about this one:
$$\lnot A \Rightarrow B = \lnot\lnot A \lor B = A \lor B$$
Here “$A$” has already a “not” before it, do I have to put another one (because of the $\Rightarrow$) like I did in the second expression?
Finally, accordingly to DeMorgan’s Law:
$\lnot(A\lor B)=(\lnot A)\land(\lnot B)$, is this applicable in an XOR statement: $\lnot(A \oplus B)=(\lnot A)\land(\lnot B)$; or we just calculate the XOR and we put the result in the negative afterwards? Or can we do it like this: $\lnot(A \oplus B) = \lnot A \oplus \lnot B$?
I hope my questions were nonsense, if did not understand them please let me know.
Cheers :)