Let\'s say we have regular expressions:
I would like to minimize the number
This problem is called "inclusion" or "subsumption" of regular expressions, because what you are asking for, is whether the set of words matched by one regexp includes (or subsumes) the set of words matched by the other regex. Equality is a different question which usually means whether two regexps matches exactly the same words, i.e. that they are functionally equivalent. For example "a*" includes "aa*", while they are not equal.
All known algorithms for regexp inclusion are the worst case take time exponential in the size of the regexp. But the standard algorithm is like this:
Input r1 and r2 Output Yes if r1 includes r2
This works, since what you are checking is that there are no words matched by r2 that are not matched by r1.