Saya terjebak pada pertanyaan berikut:
"Bahasa reguler adalah persis yang diterima oleh automata terbatas. Mengingat fakta ini, menunjukkan bahwa jika bahasa diterima oleh beberapa otomat terbatas, maka juga diterima oleh beberapa yang terbatas; terdiri dari semua kata terbalik."
Jawaban:
Jadi, dengan bahasa teratur , kita tahu (pada dasarnya berdasarkan definisi) bahwa itu diterima oleh beberapa automata terbatas, jadi ada seperangkat keadaan terbatas dengan transisi yang sesuai yang membawa kita dari keadaan awal ke kondisi penerima jika dan hanya jika input adalah string di L . Kita bahkan dapat bersikeras bahwa hanya ada satu negara penerima, untuk menyederhanakan banyak hal. Untuk menerima bahasa sebaliknya yang perlu kita lakukan adalah membalik arah transisi, mengubah status mulai menjadi status terima, dan status terima ke kondisi awal. Kemudian kita memiliki mesin yang "mundur" dibandingkan dengan yang asli, dan menerima bahasa L R .L L LR
sumber
Anda harus menunjukkan bahwa Anda selalu dapat membuat otomat terbatas yang menerima string dalamLR diberikan otomat terbatas yang menerima string dalamL . Berikut adalah prosedur untuk melakukannya.
Mari memformalkan semua ini; kita mulai dengan menyatakan teorema.
Dalil. JikaL adalah bahasa reguler, kemudian jadi adalah LR .
MisalkanA=(QA,ΣA,δA,qA,FA) menjadi NFA dan biarkan L=L(A) . The ϵ -NFA AR didefinisikan di bawah menerima bahasa LR .
Bukti. Pertama, kita membuktikan pernyataan berikut:∃ jalan dari q ke p di A berlabel dengan w jika dan hanya jika ∃ jalan dari p ke q di AR diberi label dengan wR (kebalikan dari w ) untuk q,p∈QA . Buktinya adalah dengan induksi pada panjang w .
Dimiliki oleh definisi
Biarkan
Kita tahu bahwa
Membiarkanq=qA dan p=s untuk beberapa s∈FA dan mengganti wR untuk axR jaminan bahwa q∈δ∗AR(s,wR) ∀s∈FA . Karena ada jalan berlabel ϵ dari qs ke setiap keadaan di FA (3. dalam definisi AR ) Dan jalan dari setiap negara bagian di FA ke negara qA label dengan wR , maka ada jalan diberi label dengan ϵwR=wR dari qs untuk qA . Ini membuktikan teorema.
Perhatikan bahwa ini membuktikan bahwa(LR)R=L juga.
Harap edit jika ada kesalahan pemformatan atau kekurangan pada bukti saya ....
sumber
Untuk menambah transformasi berbasis automata dijelaskan di atas, Anda juga dapat membuktikan bahwa bahasa reguler ditutup di bawah reversal dengan menunjukkan bagaimana mengkonversi ekspresi reguler untuk menjadi ekspresi reguler untuk L R . Untuk melakukannya, kita akan mendefinisikan fungsi R E V ekspresi regular yang menerima sebagai masukan ekspresi reguler R untuk beberapa bahasa L , kemudian menghasilkan ekspresi reguler R ' untuk bahasa L R . Ini didefinisikan secara induktif pada struktur ekspresi reguler:L LR REV R L R′ LR
You can formally prove this construction correct as an exercise.
Hope this helps!
sumber
rev()
notation. :) I also put downREV(R1&R2) = REV(R1)&REV(R2)
; I have a regex implementation which has intersection. Yes; I'm thinking of adding an operator for reversal perhapsR\r
(reverse preceding regex element).REV(~R)
is the reverse of the set of all strings outside of R. Is that the same as~REV(R)
: the set of all strings outside of the reverse of the set denoted by R? This is not clear at all because any palindromes inR
are also inREV(R)
.Using regular expressions, prove that ifL is a regular language then the \emph{reversal} of L , LR={wR:w∈L} , is also regular. In particular, given a regular expression that describes L , show by induction how to convert it into a regular expression that describes LR . Your proof should not make recourse to NFAs.
We will assume that we are given a regular expression that describesL . Let us first look at the concatination operator (∘ ), and then we can move onto more advanced operators. So our cases of concatenation deal with the length of what is being concatenated. So first we will break all concatenations from ab to a∘b . When dealing with these break the components up as much as possible: (ab∪a)b→(ab∪a)∘b , but you cannot break associative order between different comprehensions of course.
When∅R→∅
Whens=ϵ , we have the empty string which is already reversed thus the mechanism does not change
Whens is just a letter, as in s∈Σ , the reversal is just that letter, s
Whens=σ , we have a single constituent so we just reverse that constituent and thus σR
Whens=(σ0σ1...σk−1σk) where k is odd, we have a regular expression which can be written as (σ0∘σ1...σk−1∘σk) . The reversal of these even length strings is simple. Merely switch the 0 index with the k index. Then Switch the 1 index with k-1 index. Continue till the each element was switched once. Thus the last element is now the first in the reg ex, and the first is the last. The second to last is the second and the second is the second to last. Thus we have a reversed reg ex which will accept the reversed string (first letter is the last etc.) And of course we reverse each constituent. Thus we would get (σRkσRk−1...σR1σR0)
Whens=(σ0σ1...σk/2...σk−1σk) where k is even, we have a regular expression generally which can be written as (σ0∘σ1...σk−1∘σk) . The reversal of these even length strings is simple. Merely switch the 0 index with the k index. Then Switch the 1 index with k-1 index. Continue till the each element was switched once, but the k/2 element (an integer because k is even). Thus the last element is now the first in the reg ex, and the first is the last. The second to last is the second and the second is the second to last. Thus we have a reversed reg ex which will accept the reversed string (first letter is the last etc.). And that middle letter. And of course we reverse each constituent. Thus we would get (σRkσRk−1...σRk/2...σR1σR0)
Okay the hard part is done. Let us look to the∪ operator. This is merely a union of sets. So given two strings, s1,s2 , the reverse of s1∪s2 is only sR1∪sR2 . The union will not change. And this makes sense. This will only add strings to a set. It does not matter which order they are added to the set, all that matters is that they are.
The kleene star operator is the same. It is merely adding strings to a set, not telling us how we should construt the string persay. So to reverse a kleene star of a strings , is only ((sR)∗) . Reversal can just move through them.
Thus to reverse this(((a∪b)∘(a))∗∪((a∪b)∘(b))∗)R we simply follow the rules. To reverse the outer union we simply reverse its two components. To reverse this: ((a∪b)∘(a))∗ kleene star, we simply reverse what is inside it →(((a∪b)∘(a))R)∗ . Then to reverse a concatenation, we index and then switch greatest with least. So we start with ((a∪b)∘(a))R and get ((a)R∘(a∪b)R) . To reverse that single letter, we reach our base case and get (a)R→(a) . This process outlined above describes an inductive description of this change.
sumber