Trying to understand binary operations, but seriously confused. I was looking at all the videos on youtube, forums, but I think I must be missing something.
I have a set $$S = \{a, b, c, d, e \}$$ and for $x,y \in S$ define the binary operation $*$ on $S$ by $x*y=y$. It is this form, so please stop changing it!
I'm trying to build a table to represent it, to show $*$ on $S$.
Any suggestions?
A binary operation $*$ on a set $S$ is nothing more than a bunch of assignments. Here, we assign to each pair of elements of $S$ another element of $S$. So, either $*$ is defined for you already, or you define $*$ so that
$a*a = $ something in $S$
$a*b = $ something in $S$ (could be the same something as above, or it could be different)
$a*c = $ something in $S$ (ditto)
and so on for every pair of elements.
You mentioned an operation table, which is a fine way to represent an operation on a set of this size. Draw a $6 \times 6$ grid similar to the one in this question, only instead of using the symbols in that grid, use the symbols $a$, $b$, $c$, $d$, and $e$. The row in yellow is usually called the master row, and you should have each element of $S$ in it. Similarly for the master column. Now, for the "lower-right" $25$ elements, fill in each box with one of the elements of $S$.
Now, to find, say, $b*d$, start with the row where the leftmost (yellow) entry is $b$. Search along that row until you find the column where the topmost (yellow) entry is $d$. The value in that box is what you have assigned to $b*d$.
Edit: Now that I see that for each $x,y \in S$, $x*y=y$, this task becomes clearer. Simply assign $a*a = a$, $a*b = b$, and so forth.