Epsilon transitions are useful for combining machines. Below are two machine fragments that accept "abc" and "aac", combine them using epsilon transitions to form a single machine that accepts both "abc" and "aac".
Accept Reject
'abc' ''
'aac' 'a'
'b'
'abcaac'
'bc'
'ac'