Hi,
I have the following exercise, it is required to check if
the following equation defines an operation on the set of integers, and if so, check if it is associative, commutative and identity element.
$m * n = mn + 1$
I have taken $m = 2, n = 3$
$2*3 = (2 \cdot 3) + 1 = 6 + 1 = 7...