The document discusses constructing a DFA from a regular expression and NFA. It provides an algorithm for the subset construction which works by treating each DFA state as a set of NFA states. Transitions are determined by taking the epsilon closure of the NFA states reachable on the input symbol from the current set of states. An example applies the algorithm to construct the DFA for the regular expression (a/b)n*abb from its NFA.