Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
130 views

Transition Graph per alphabet?

How do you determine how many different Transition Graphs are over a particular alphabet? For example How many TG's are over the alphabet {x, y}. I am taking a class with a similar question from ...
2
votes
3answers
95 views

How to call a structured language that cannot loop or a functional language that cannot return

I created a special-purpose "programming language" that deliberately (by design) cannot evaluate the same piece of code twice (ie. it cannot loop). It essentially is made to describe a flowchart-like ...
2
votes
2answers
142 views

Automata programming language

Do you know any programming language that implements abstract machines like Turing machines and Finite State Automatons? That is, process the following input: A 5-tuple (The notorious ⟨Q,Σ,δ,q0,F⟩ ...
1
vote
1answer
34 views

What type of languages are accepted by a PDA in which stack size is limited?

What type of languages are accepted by a PDA in which stack size is limited, let's say 20 items? In my view it should still be CFL. Because there is a temporary memory to store.
1
vote
2answers
78 views

Notation for concat in set theory

I'm working on homework for a automata theory class. So far its just proofs involving regular expression nothing too crazy. Anyway, my question is this what is the proper set notation for ...
1
vote
1answer
45 views

Is there an algorithm to go from a Context-sensitive grammar to a linear bounded automata?

I am studying LBA (linear bounded automata). Trying to figure it out how to solve some exersise. So I wonder if there is an easy way to make a LBA given a Context-sensitive grammar. This is thinking ...
1
vote
1answer
210 views

Context free grammar for this language

I'm working on some test preparation material and stuck on this problem. Show a context free grammar for L = {w e {a,b}*: w = wR and every a is immediately followed by a b}. wR is w in reverse. So, ...
0
votes
0answers
26 views

What languages does this PDA represent? [closed]

reviewing for my final, I think its the numbers of a's and b's must be the same by using c, since in 2 we push a c for every a we see, and in 3 we pop a c for every b we read with a c still on the ...
0
votes
2answers
120 views

Linear Temporal Logic Questions (2)

If you are not familiar with LTL (linear temporal logic), please skip this question! And yes, LTL is very significant to programming, as it is a core to the model checking system we use to verify ...
0
votes
1answer
110 views

What is the typical alphabet size of Finite State Machines?

Not quite sure if this is the correct forum, but it was suggested at Theoretical Computer Science that I move it here... What is the typical alphabet size of Finite State Machines? I am currently ...
0
votes
2answers
151 views

What regular language intersects with 1*0* gives 1n0n

I'm reading a book on automata theory, and the book gives an example that a language with equal number of 0s and 1s intersects with 1*0* would result 1n0n, where n > 0 So my question is, how can I ...