This document describes the process of converting a non-deterministic finite automaton (NFA) to a deterministic finite automaton (DFA) using subset construction. It provides examples to demonstrate how to determine the states and transitions of the equivalent DFA by tracking all possible states the NFA could be in after reading each input symbol. The key steps involve using e-closure and move operations on state sets to iteratively build up the DFA states and transition table until all states are determined.