Given $\mathbb{R} \setminus \{-1\}$ with the operation $a*b=a+b+ab$, check whether is it or not a group.
My solution:
Associative $$(a*b)*c=(a+b+ab)*c=a+b+ab+c+(a+b+ab)c=\\ =a+b+ab+c+ac+bc+abc;$$ $$a*(b*c)=a*(b+c+bc)=a+b+c+bc+a(b+c+bc)=\\ =a+b+ab+c+ac+bc+abc$$
Existence of identity el.
If $e$ is the identity, then, for each a in the set, $a*e=e*a=a \rightarrow a*e=a+e+ae=a$. Here, it seems that the identity is $0$, but if $a=1$, the equation has no solution. So there is no identity element and therefore the set is not a group.
Is that right?