An example Proof. Just so you have a reference, we'll show you how to "prove"
that Regular languages are closed under difference, ie. L1-L2 is regular if
L1 and L2 are.
Let M1 = (Q1, Sigma, delta1, q1, F1) accept L1, and let
Let M2 = (Q2, Sigma, delta2, q2, F2) accept L2
Then
M = (Q1xQ2, Sigma, delta, (q1,q2), F1 x(Q2-F2)) accepts L1-L2
where delta(r1,r2,a) = (delta1(r1,a), delta2(r2,a))
At this point you should give a few words of justification
about why you think this new machine would accept L1-L2.
If the mathematical notation
is just way to much for you, just try to explain things in
intuitively.