$A=R-\{-1\}$ and $a*b = a+b+ab $
- Show that * is a binary operation on A
- Show that * is associative
- Show that there is an identity element in A for *
- Show that every element in A has an inverse with respect to *
I'm new to this lesson. All I know to prove is associativity,
let $a,b,c\in A$
Consider:$$(a*b)*c=(a+b+ab)*(c)$$ $$(a*b)*c=[a+b+ab+c+(a+b+ab)c]$$ $$(a*b)*c=a+b+c+ab+ac+bc+abc$$
Now consider: $$a*(b*c)=a*(b+c+bc)$$ $$a*(b*c)=[a+(b+c+bc)+a(b+c+bc)]$$ $$a*(b*c)=a+b+c+ab+ab+ac+abc$$ Since we get the same result it is associative.
How to prove part 1? and How do I prove that identity exist? Thanks in advance!
P.S: also I'm curious to know why -1 is omitted in the set?