A Cayley table is a table that defines a binary operation on a set. Normally the entries are filled with numbers or other symbols, but here the entries are colors. With seven colors and six color changes you can fill the entries with different colors, and color the borders between heading and body of the table.
This table is of a cyclic group of order 6. I'll leave it as an exercise for you to identify the identity and the generators of this group.
This model was created to complement “Applied Discrete Structures” - a open content text in discrete mathematics (http://discretemath.org)
The model was created with Mathematica. Code for the .stl file is
b = 0.8;
entry2[0, 0] = Cuboid[{0, 0, 0}, {1, b, 0.7}];
entry2[i_, 0] := Cuboid[{i, 0, 0}, {i + 1, b, Sqrt[i]}]
entry2[0, i_] := Cuboid[{0, i, 0}, {b, i + 1, Sqrt[i]}]
borderV = Cuboid[{0, b, 0}, {7, 1, Sqrt[7]}];
borderH = Cuboid[{b, 0, 0}, {1, 7, Sqrt[7]}];
entry2[i_, j_] :=
Cuboid[{i, j, 0}, {i + 1, j + 1, Sqrt[Mod[i j, 7]]}]
{borderV, borderH, Map[entry2 @@ # &, Tuples[Range[0, 6], 2]]} //
Graphics3D // Export["U7.stl", #, "STL"] &
The author marked this model as their own original creation.