First, we need to find the powerset of the states of the NFA. The states are {a, b, c, d}. The powerset is:
P = { {}, {a}, {b}, {c}, {d}, {a, b}, {a, c}, {a, d}, {b, c}, {b, d}, {c, d}, {a, b, c}, {a, b, d}, {a, c, d}, {b, c, d}, {a, b, c, d} }
Show moreā¦