Can someone please explain why I can't use only IMPLICATION to represent AND and NOT with proof as well?
I know that I can represent OR simply by using IMPLICATION. Was thinking if I could find representation of NOT, then I can easily find representation of AND.
From my understanding, we can represent IMPLICATION by using OR and NOT set. Which is a functionally complete. Does this mean that Implication is also functionally complete?
$$\begin{align}\lnot A &\iff (A\implies \bot)\\ A\land B&\iff \lnot (A\implies\lnot B)\end{align}$$
If you can use $\bot$ as an argument to $\implies$ then I think this works. If you can not use $\bot$, then implementing $\lnot A$ is impossible. You are left with just $A$ and $\implies$. $A\implies A$ gives you $\top$, but it does not help. $\top\implies A$ is just $A$ and $A\implies\top$ is just $\top$ (as is $\top\implies\top$), so your return value can never be anything but $A$ or $\top$.