RR*=R* ?



The text books on regular expressions show that:
RR*=R*

What I feel is that
RR*=R(є + R + R^2 + R^3 ... )
=R + R^2 + R^3 + R^4 ...
=R+
=R* - {є}

How come RR*=R* is true?

.