Prove that there is a language A {0, 1} with the following properties: (a) Foral
ID: 3594570 • Letter: P
Question
Prove that there is a language A {0, 1} with the following properties: (a) ForallxA,|x|4.
(b) No regex of length at most 10 recognizes A.
Assume that the only allowed symbols in a regex are ( ) * + | 0 1
For example, the regex (0|1)*0110 has length 10.
Hint: You don’t have to define A explicitly; just show that it has to exist. Count the number of languages satisfying (4a) and the number of Regex satisfying (4b), and then use the pigeonhole principle. To count the number of languages satisfying (4a), think about writing down all the strings of length at most 4, and then to define such a language, you have to make a binary decision for each string about whether to include it in the language or not. How many ways are there to make these choices?
Explanation / Answer
class Array2DWrapper { int *ptr; public: Array2DWrapper(int *ptr) : ptr(ptr) {} int * operator[](int i) { return ptr + i*N; } }; // USAGE: void exampleFunction(int *arrPtr) { Array2DWrapper arr { arrPtr }; ... arr[i][j]; ... }
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.