The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
170 views

Are all infinite languages undecidable?

I am wondering are all infinite languages undecidable? They must be right, as the TM trying to decide an infinite language would just loop forever, which makes it a recgonizer, not a decider. Thanks ...
1
vote
1answer
79 views

Example of Semi-Regular Grammar who's language is NOT regular

A "semi-regular" grammar is one that only allows rules of the form: X → y X → y Y X → Y y where X and Y are any single non-terminals, and x and y are any single terminals. For example, this is a ...
1
vote
1answer
132 views

Can someone give a simple but non-toy example of a context-sensitive grammar? [closed]

I'm trying to understand context-sensitive grammars, and I understand why languages like {ww | w is a string} {an bn cn | a,b,c are symbols} are not context free, but what I'd like to ...
0
votes
1answer
43 views

what is the logic of Finite Automa and loops

I have to draw a Finite Automaton that accepts the following string Λ, a, aabc, acba and accb In my view a(a+b+c)* this might be it's regular expression as the string is starting from a and ...
1
vote
4answers
168 views

Is C++ template mechanism is just a type builder function?

I just started to think on the subject. Every C++ template can be replaced with a "normal" function that returns a class (or function) object? Normal means compile-time program. So I want to replace ...
3
votes
6answers
179 views

Theoretical foundations of Lisp

I've just started learning a dialect of lisp (Racket) and I'd like to know if some one has a link or can point me to the theoretical foundations of the family of lisp languages, by resources I mean ...
4
votes
2answers
120 views

Am I understanding Predicates correctly in regards to LINQ

I am trying to get my head around Predicates and LINQ. While the Syntax of LINQ is starting to make sense to me, I am having slightly more trouble with the theory behind LINQ. Here's what I have so ...
0
votes
0answers
44 views

In formal context free grammars, is the starting point a single nonterminal or a single rule?

If there's a start nonterminal, is it required that said nonterminal has a single rule? Wikipedia's page on 'Terminal and nonterminal symbols' says this: A formal grammar includes a start symbol, ...
0
votes
1answer
253 views

Context Free pumping lemma

Is the following language context free? L = {a^i b^k c^r d^s | i+s = k+r, i,k,r,s >= 0} I've tried to come up with a context free grammar to generate this but I can not, so I'm assuming its not ...
5
votes
2answers
164 views

Why names form a kind and not just a type?

Some time ago in one of Haskell extensions (can't find the link), and recently in Ur I've found that names (e.g., of record fields) form a Kind. Can somebody explain why Type abstraction is not enough ...
2
votes
2answers
144 views

Expression statements in VBA

I was recently trying to write an Excel macro, and I needed to determine whether a particular worksheet existed. My weapon of choice for scripting is Python, and my VBA skills are admittedly poor. So, ...
0
votes
0answers
77 views

Analyzing Text for Accents

This is the first part of another question of mine that had a recommendation to make it two questions: Adding Accents to Speech Generation. Summary: The other question asks how to add an accent ...
8
votes
2answers
518 views

Adding Accents to Speech Generation

The first part of this question is now its own, here: Analyzing Text for Accents Question: How could accents be added to generated speech? What I've come up with: I do not mean just accent marks, ...
1
vote
3answers
85 views

Encapsulation and Exceptions

I'm designing my own OO language and was happily going along until I hit exceptions. It seems to me that exceptions break encapsulation. For example, if class A has an object of class B, B has C, and ...
8
votes
3answers
498 views

Where did Option[T] come from in Scala?

I'm still a noob in Scala development but I have found the Option[T] concept really awesome, specially the pattern matching when used with Some and None. I am even implementing it so some extent in a ...
-3
votes
1answer
122 views

Looking for a compiled language with strict requirements [closed]

Since most experienced programmers agree that their language has serious defects in sometimes the most basic topics. The strong points I'm looking for are: Performance (do not discuss my metafors, ...
1
vote
4answers
227 views

Efficient representation of functions

Function type A -> B in some sense is not very good. Though functions are first class values, one often cannot freely operate them due to efficiency problems. You can't apply too many transformations ...
5
votes
3answers
345 views

What is the definition of a “true” multidimensional array and what languages support them?

Most of the programming books I have ever read, have the following line: "X language does not support true multidimensional arrays, but you can simulate (approximate) them with arrays of arrays." ...
3
votes
2answers
351 views

Language Theory - Loop Invariants - Pre/Post Conditions

I am working on a revision assignment for an exam on language theory. A couple of the exercises that we can do involve writing pre and post conditions and loop invariants for a couple of methods. I ...
2
votes
1answer
70 views

Proving language properties

I am taking a course on the formal foundations of programming, one of things we have covered is proving certain properties of languages, i have done most of the work, but I am stuck on these two ...
4
votes
2answers
201 views

Is the language of all strings over the alphabet “a,b,c” with the same number of substrings “ab” & “ba” regular?

Is the language of all strings over the alphabet "a,b,c" with the same number of substrings "ab" & "ba" regular? I believe the answer is NO, but it is hard to make a formal demonstration of it, ...
17
votes
4answers
902 views

What is the theory behind mutable and immutable types?

One of the things that I admire about Python is its distinction between mutable and immutable types. Having spent a while programming in c before coming to Python, I was astonished at how easily ...
2
votes
2answers
183 views

Grammar to recognize postfix formulas

I'm trying to create a postfix to infix converter, and I'm unable to create the grammar for postfix formulas. I've been also looking for it for a while without success.. What grammar could I use to ...
4
votes
2answers
657 views

SLR(1) Parser and epsilon involved

Let's suppose I have the following grammar: S → X X → a | ϵ If that grammar wouldn't have ϵ involved, I would construct the first state like: S' → .S S → .X X → .a but what about the ϵ symbol? ...
0
votes
1answer
54 views

find a string with at least n matching elements

I have a list of numbers that I want to find at least 3 of... here is an example I have a large list of numbers in a sql database in the format of (for example) 01-02-03-04-05-06 06-08-19-24-25-36 ...
0
votes
1answer
87 views

Run time optimisation in Javascript

Do the main Javascript interpreters have any built in optimisation at all? I'm thinking of very simple cases like while(i < array.length) { ... }
8
votes
12answers
2k views

Why semicolon is not required after a curled bracket?

I know that a semicolon is required after a statement (I'm talking about Java, C++, and similar languages), but is not required after a curled bracket. Why so? if (a > b) printf("hello!"); // ...
17
votes
4answers
2k views

Is HTML a context-free language?

Reading some related questions made me think about the theoretical nature of HTML. I'm not talking about XHTML-like code here. I'm talking about stuff like this crazy piece of markup, which is ...
3
votes
4answers
149 views

Building an OOP programming language from “Atoms”

There is a kind of beauty in supervening relationships. Consider the following examples: Atoms are composed of subatomic particles, molecules are composed of atoms, cells are composed of molecules, ...
2
votes
3answers
174 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 ...
-1
votes
1answer
53 views

How to know what's a language?

Once a mathematician told me a project is possible on the condition that we got a language. Could you help me understand how we know when we do and when we don't? Like examples or whether an automated ...
51
votes
1answer
3k views

The recognizing power of “modern” regexes

What class of languages do real modern regexes actually recognise? Whenever there is an unbounded length capturing group with a back-reference (e.g. (.*)_\1) a regex is now matching a non-regular ...
0
votes
4answers
526 views

What is the basic C# interface scope?

I am having a dispute with another fellow programmer, over the scope of interfaces. suppose we have the following: public interface IFoo { string Bar { get; set; } } public class SomeFoo: IFoo ...
1
vote
1answer
660 views

Prove that the set of regular languages is a proper subset of the set of the context-free languages

I was brushing up (not homework)on some computation-theory and came accross this problem: How can you prove that the set of regular languages is a proper subset of the set of the context-free ...
2
votes
1answer
135 views

Parse list with minimal separators

I have a language with statements of 4 kinds: s00, s01, s10, s11 where a leading 1 means initial keyword, a trailing 1 means terminated, and I have a separator ";". I can terminate any statement with ...
0
votes
1answer
731 views

Program to convert context free language to push down automata?

I can't find any applet or program online to convert a context free language into a push down automata... any help would be greatly appreciated.
1
vote
1answer
753 views

Algorithm for regular expression intersection with cfg

Im looking for an algorithm which outputs if the intersection of a regular expression and a contex free grammar is empty or not. I know that this problem is decidable, however, I cannot find any ...
2
votes
2answers
331 views

Context Free Grammar Issue

For starters this is a homework question. I have an idea but I am still not able to get the correct answer. I'm not asking for the answer I am just asking for help to answer the question. I am ...
7
votes
3answers
141 views

Out of curiosity, how many people here know how regular expressions are compiled? [closed]

I'm going over this in my theory class, and I'm curious as to how many people here know what regular expression compilation actually is. I've looked online, and it seems to me that this is a more ...
1
vote
1answer
58 views

How are “pattern languages” related to “regular languages”?

I always thought that there was no real language class below type-3 grammars, but now I found the "Language identification in the limit" model which allows learning of pattern languages but not ...
6
votes
3answers
8k views

Regular expression for strings with even number of a's and odd no of b's

Im having a problem in solving the problem:- Its an assignment, i solved it, but it seems to be too long and vague, Can anyboby help me please...... Regular expression for the strings with even ...
4
votes
6answers
242 views

Is there any object-oriented static typed language with variables with few types?

I like reading about programming theories, so could you tell me if there is any object-oriented static typed language that allow variables to have a few types? Example in pesudocode: var value: ...
13
votes
6answers
628 views

What does it mean for a language to be statically typed?

My understanding is that it means that one can potentially write a program to formally prove that a program written in a statically typed language will be free of a certain (small) subset of defects. ...
8
votes
4answers
255 views

regexp-like library for matrix pattern search

Is there a library (in any language) that can search patterns in matrixes like regular expressions work for strings ? Something like regular expresions for matrixes, or any matrix pattern search ...
0
votes
4answers
133 views

.NET application to write and build another application

In my constant strive to under promise and over deliver I'm looking to make a .Net tool to create simple .Net applications that the non-programmer superiors can use. How would I go about writing and ...
3
votes
0answers
387 views

Which formal language class are XML and JSON with unique keys (they are not context-free) [closed]

Please don't answer here but at cstheory.stackexchange, where I copied this question to! JSON and XML are both frequently called to be context-free languages - they are both specified mainly by a ...
9
votes
3answers
209 views

Free online tutorial on the 'thought process' behind developing a programming language?

When I read about different computing languages on here, I always wonder what motivated the original decision to develop something new instead of just extending a language which already exists. ...
2
votes
1answer
235 views

Theory of formal languages - Automaton

I'm wondering about formal languages. I have a kind of parser : It reads à xml-like serialized tree structure and turn it into a multidimmensionnal array. My point is on the similarities between the ...
2
votes
1answer
309 views

How do you classify languages into regular, context free, and phrase-structure?

If you're given a language, how do you figure out if it's regular, CF but not regular, or phrase-structure but not CF? Is there a good way to attack this problem? I could randomly try to make FAs or ...
8
votes
1answer
1k views

Context Free Language Question (Pumping Lemma)

I know this isn't directly related to programming, but I was wondering if anyone know how to apply the pumping lemma to the following proof: Show that L={(a^n)(b^n)(c^m) : n!=m} is not a context ...

1 2