Let's say that I got a
set = { Arnold, Harrison }
and I want to display the equivalence class of [ Harrison ]
The actual condition for the relation doesn't matter in this case so let's just say that {Arnold} is the only relation to Harrison.
This would be displayed as:
[ Harrison ] = { Arnold }
However, if we have this set instead:
set = { Arnold, Harrison, {Arnold, Harrison}, { Arnold, Arnold, Harrison} }
And we say that this time, Harrison has a relation to Arnold but also {Arnold, Harrison} and even {Arnold, Arnold, Harrison}.
How is this expressed as an equivalence class?
[ Harrison ] = {Arnold, Harrison}
or...
[ Harrison ] = { Arnold, {Arnold, Harrison}, {Arnold, Arnold, Harrison} }
or... what?!
Your example (or "the homework text") doesn't seem too enlightening because all the elements in the set seem to be equivalent to each other.
Remember that the equivalence class of an element $s$ in a set $S$ with an equivalence relation $\sim$ is simply the subset of $S$ whose element are the elements of $S$ equivalent to $s$: $$ [s]=\{x\in S\,\mid\,x\sim s\}. $$ So, for instance, if $S=\{a,b,c,d,e\}$ and
then the equivalence classes are $[a]=[c]=\{a,c\}$, $[b]=[e]=\{b,e\}$ and $[d]=\{d\}$.
Furthermore, the quotient set is $S/\sim=\{[a],[b],[d]\}$.