3
$\begingroup$

https://www.dropbox.com/s/0d1sh8pxn6savgm/IMG_20121005_010828.jpg

Scan from textbook

Can anyone identify the names of the crosshair and ^ symbols?

90% sure the ^ means bitwise AND from searching wikipedia, but I haven't found the crosshair symbol anywhere else.

  • 0
    caret*** thanks!2012-10-05

1 Answers 1

6

I take it that you’re asking about $\land$ and $\bigoplus$ in this displayed line:

$\psi_i(x)=Y\left(\bigoplus_{k=0}^{L-1}\left(x[k]\land i[k]\right)\right)\qquad x,i\in\mathcal{B}^L$

Judging from the context, $\mathcal{B}$ is probably $\{0,1\}$, so that $x$ and $i$ are $L$-bit bitstrings. If so, I expect that you’re right about $\land$: $0\land 0=0\land 1=1\land 0=0$, and $1\land 1=1$. $\bigoplus$ is almost certainly non-carrying addition, or if you prefer, exclusive OR: $0\oplus 0=1\oplus 1=0$, $0\oplus 1=1\oplus 0=1$, and $\bigoplus$ is related to $\oplus$ as $\sum$ is related to $+$.