Actually, we've had them presented like this:
AND = ^
OR = v
IMPLIES = -->
T = True
F= False
NOT = ~
And some additional ones:
EQUIVALENT <-->
So X+ 0 = X translates to X vY --> X; Y is always F. So if X is T, then TvF-->T. If X is F, then FvF-->F. And so on.
There are some other important tautologies:
[X-->Y ^X] --> Y Modus Ponens
[X-->Y^~Y]-->~X Modus Tollens
[X-->Y^Y-->Z]-->[X-->Z] Hypothetical Syllogism
For those less familiar with symbollic logic, here is a guide:
AND
X^Y
T if both X and Y are T. F otherwise.
OR
XvY
F if both X and Y are F. T otherwise.
IMPLIES
X-->Y
F if X is T and Y is F. T otherwise. (this is an important one. It's commonly mistaken for the equivalent argument.)
EQUIVALENT
X <--> Y
T if X and Y are both the same. F otherwise.
NOT
~X
T if X is F, and F is X is T.