Me and a friend are study for a quiz and are trying to determine the difference between the two NFA's produce by the regular exressions a*b and a*+b. To us they seem functionally equivalent.
On the left is the nfa produced by a*b and on the right a*+b. Can you basically drop the + sign?

+represents "one or more of the preceding character". But after using that definition to rework problems we had solutions to we realized it didn't make sense. // So it seems that there is sometimes a different meaning to+at different times. How can you tell what is meant? – KDecker Oct 14 '14 at 23:04