Let \( \Sigma = \{1,2,3,4\} \). For \( x \in \Sigma^* \), let \( {prod}(x) \) be the product of symbols in \( x \) modulo 7. We take \( {prod}(\epsilon) = 1 \), where \( \epsilon \) is the null string. For example, \[ {prod}(124) = (1 \times 2 \times 4) \mod 7 = 1. \] Define \[ L = \{ x \in \Sigma^* \mid {prod}(x) = 2 \}. \] The number of states in a minimum state DFA for \( L \) is ___________. (Answer in integer)
The function \( {prod}(x) \) maps strings over \( \Sigma \) to values in the set \( \{0,1,2,3,4,5,6\} \) modulo 7. Since this function tracks the product of elements modulo 7, it defines a residue class system of at most 7 possible values.
Step 1: Compute the transition function for modulo 7 residues Each input character \( c \in \Sigma \) modifies the current residue \( r \) via multiplication \( (r \times c) \mod 7 \). Since all values map to one of 7 possible residues, the DFA must have at most 7 states.
Step 2: Identify the minimum number of states - The DFA needs one state for each residue \( 0,1,2,3,4,5,6 \) modulo 7. - The accepting state is the one corresponding to residue 2. - Since multiplication modulo 7 never produces 0 for any sequence of nonzero values, state 0 is unreachable. Thus, the minimal DFA requires 6 states (corresponding to residues \( 1,2,3,4,5,6 \)).
A disk of size 512M bytes is divided into blocks of 64K bytes. A file is stored in the disk using linked allocation. In linked allocation, each data block reserves 4 bytes to store the pointer to the next data block. The link part of the last data block contains a NULL pointer (also of 4 bytes). Suppose a file of 1M bytes needs to be stored in the disk. Assume, 1K = \(2^{10}\) and 1M = \(2^{20}\). The amount of space in bytes that will be wasted due to internal fragmentation is ___________. (Answer in integer)
Three villages P, Q, and R are located in such a way that the distance PQ = 13 km, QR = 14 km, and RP = 15 km, as shown in the figure. A straight road joins Q and R. It is proposed to connect P to this road QR by constructing another road. What is the minimum possible length (in km) of this connecting road?
Note: The figure shown is representative.