I have a boolean expression $$ABC+AB\bar C +A\bar B C+\bar A BC$$ This gives the majority boolean operator. That is it returns true when two or more of $A,B,C$ are true. I simplify it as $$AB+C(A\bar B+\bar AB)$$
I cannot show that it is equivalent to $$AB+BC+CA$$ i.e standard representation of majority function.
It's been a while since I've done Boolean algebra, but I think this will work (using the fact that $A=A+A$):
$$ \begin{align} ABC + AB\bar C +A \bar B C + \bar ABC &= ABC + AB\bar C + ABC + \bar ABC + ABC +A\bar BC\\[0.5ex] &=AB(C+\bar C)+BC(A+\bar A)+CA(B+\bar B)\\[0.5ex] &=AB + BC + CA \end{align} $$