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?!