I haven't used this forum in about a year and all of a sudden today I started receiving emails about some new topic was started. I think this is because the users clicked "notify all the members." I do not see anything in "My Area" that allows me to turn off these emails. Any ideas? If not, is there anyway to delete this account entirely?
I have a bit of a math question for a Sol Lewitt sort of project. Say I have a 4x4 grid with 16 possible positions and 4 points that can each fill one of those positions at a time. I want to systematically determine all of the unique permutations of the positioning of the 4 points. I think I could probably work this out with some for loops, but I'm not sure how to screen for translation and rotation. I think it's best if I explain this visually:
xooo ooox
oxoo ooxo
ooxo oxoo
ooox should not be unique from xooo as it represents the same shape translated around the center axis. Similarly,
xxoo ooxx
xxoo ooxx
oooo oooo
oooo should not be unique from oooo as it was simply translated two positions to the right.
Additionally, I would be interested in any reading on these types of problems that only requires elementary math.