See the tag entry for "theory".

learn more… | top users | synonyms

-2
votes
3answers
54 views

Difference between strongly and weakly typed languages?

I have read several pages, including the wiki page http://en.wikipedia.org/wiki/Strong_and_weak_typing dealing with strongly and weakly typed languages. For the most part, I think I understand the ...
-3
votes
2answers
53 views

Give a Regular Language L [closed]

Give a regular grammar for L= {a^n b^n : n<=100} I would do something like this : s---> A | empty string A---> aB| empty String b---> Ab but How do we keep count of the number in the grammar? ...
0
votes
0answers
64 views

Lines of code ever written [closed]

Considering how long programming languages have existed, how many lines of code would one suppose has ever been written since the beginning of the electronic computer, as we know it? Now, obviously ...
0
votes
0answers
29 views

Convert string representation of a number to binary

Today I came across a theoretical problem I could not find a solution for. As I am not looking for a real implementation, pseudocode would suffice. While this may be of little use in the real world, ...
0
votes
2answers
35 views

Ideally, how should HTML markup be used for games, etc? [closed]

HTML markup is built around replicating print articles, and ironically HTML5 markup is even more geared to that. When we appropriate the technology for games and other presentational purposes, do ...
0
votes
2answers
82 views

Theoretical c++ OO Strategy code

Lets say I have a piece of code: A1 a; A2 b; a= function1_A(); b= function2_A(); And then I want to do it in another way: B1 a; B2 b; a= function1_B(); b= function2_B(); And I do a Strategy ...
2
votes
1answer
114 views

Algorithm Analysis - theoretical approach [closed]

I'm taking a course related to Algorithm Analysis. The thing is the course is more focused on the theoretical part. By that I mean we don't actually take real algorithms and study them, we just take ...
1
vote
2answers
33 views

How to generate a random number from a random bit generator and guarantee termination?

Assuming I have a function that returns a random bit, is it possible to write a function that uniformly generates a random number within a certain range and always terminates? I know how to do this ...
2
votes
1answer
374 views

Armstrongs Axioms Proof

I am having issues proving functional dependencies with Armstrong's Axioms. This one i'm struggling with. Let R(A,B,C,D,E) be a relation schema and F = {A→CD, C→E, B→D} 1. Prove: F: BC-> DE What I ...
0
votes
2answers
51 views

Would it be practical for a programming language to have a type of method that executes in the same scope as the calling class? [closed]

Now, this is just just something I was wondering about, a bit of an open-ended question. I would be interested to see a programming language that uses functions/methods as more or less a place-holder ...
2
votes
1answer
292 views

Turing completeness of lambda calculus?

How do you argue for the fact that lambda calculus is Turing complete (in the simplest way possible) ?
1
vote
3answers
37 views

Dealing with many objects

I am making a strategy game and came across a kind of problem. Basically, I don't know how to deal with the dynamic creation of the units I need. Should I use some big switch statement or is there a ...
0
votes
2answers
235 views

DFA and regular languages

I've been thinking about the following and I think the answer's in the affirmative. Is it true that every subset of a DFA-acceptable language that is regular is also DFA-acceptable?
2
votes
1answer
400 views

How to skolemize multiple combinations of universal and existential quantifieres?

What is the skolemized form of (∀u∃v a(u,v)) ∧ (∀x∃y a(x,y)) ? I am unsure, because there are different perenex normal forms possible: ∀u∃v ∀x∃y (a(u,v) ∧ a(x,y)) ∀u∀x ∃v∃y (a(u,v) ∧ a(x,y)) … ...
1
vote
4answers
57 views

Size of value affecting computation time?

Say I have a Java program such: //case1 Long first = 1; Long second = 1; Long third = first - second; //case2 Long first = Long.MAX_VALUE; Long second = 100000L; Long third = first - second; Those ...
3
votes
2answers
186 views

Why are persistent splay trees particulary useful in functional programming?

On the Splay Trees Wikipedia page it is said (in the Advantages section): Possibility of creating a persistent data structure version of splay trees—which allows access to both the previous and ...
0
votes
1answer
116 views

Spider in ActionScript3

Is it theoretically possible to build a spider in ActionScript3 without using server-side middleware technologies? Nothing very advanced (only visiting an HTML page and returning the HTML as text to ...
1
vote
1answer
178 views

Split operation on rope data structures

I am working on implementing the Rope data structure in C++ for completely abstract objects. The problem I am having is that I can't figure out the implementation of the critical "split" operation. ...
6
votes
6answers
526 views

What is the result of divide by zero?

To be clear, I am not looking for NaN or infinity, or asking what the answer to x/0 should be. What I'm looking for is this: Based on how division is performed in hardware (I do not know how it is ...
5
votes
3answers
351 views

Intended infinite recursion, no-return functions

Infinite recursion is most often not desired, and when it happens it usually causes a stack overflow or segfaults. But for theory's sake, and plain curiosity, I've been thinking if it'd be possible ...
3
votes
3answers
191 views

Is there such a thing as a reverse foreign key?

In MySQL, is there a way to specify that a.column cannot exist in b.column - a reverse foreign key? In other words: # Would not return any rows ever SELECT * FROM a INNER JOIN b ON a.column = ...
1
vote
3answers
79 views

Would these C-pointer operations cause problems?

Let's say I've got that: char *p = NULL; I'm sure this one would be a problem as I'd be dereferencing a NULL pointer: *p = 16; On the other hand, I think this one would be OK for I'd be getting ...
0
votes
4answers
102 views

How would you write a program to reduce an equation?

I may be misinterpreting the exact phrasing on the question about which I've been thinking, but I'm curious as to how one would reduce an equation of multiple variables. I'm assuming factoring plays ...
10
votes
3answers
5k views

Calling base class overridden function from base class method

public class A { public void f1(String str) { System.out.println("A.f1(String)"); this.f1(1, str); } public void f1(int i, String str) { ...
9
votes
4answers
554 views

What use cases are there for defining a new root class?

We know that in Objective-C there are two main root classes: NSObject and NSProxy. There are other roots (mainly for private and legacy purposes) like Object, and NSLeafProxy. Defining a new root ...
11
votes
2answers
614 views

Correct implementation of min

At time 0:43:15 in this Tech-Talk about D, The implementation of the min function is discussed. Concerns about "stability" and "extra shuffling (if values are equal)" when being used in some ...
0
votes
2answers
117 views

What problems or benefits would be associated with a “static this” keyword?

What I am thinking of is something like the "this" keyword but at a class level i.e. class Example { public static void main(String[] args) { assert Example.class == thisclass.class ...
4
votes
4answers
232 views

How can be interpreted code even little efficient? (theoretical)

OK, first, I dont want any kind of flamewar here or anything like it. My bigger question is more theoretical, and will include few examples. So, as I wrote, I cannot understand how can interpreted ...
0
votes
2answers
80 views

Two Different Grammars Over One Set of Outputs

Can you give me 2 different grammars which outputs the same set of words? Illustration: Given a grammar A and B over the alphabet {0,1}, if grammar A can produce the word 0101001, grammar B could as ...
8
votes
4answers
716 views

Why aren't (C++) virtual destructors enforced for a base class

Destructors aren't virtual by default to not hurt when its not needed, which is fine. But in case of a base class derived class scenario, is there any use case for not having a virtual destructor? If ...
2
votes
4answers
1k views

Is there any difference between md5 and sha1 in this situation?

It is known that 1. if ( md5(a) == md5(b) ) 2. then ( md5(a.z) == md5(b.z) ) 3. but ( md5(z.a) != md5(z.b) ) where the dots concatenate the strings. EDIT --- Here you can find a ...
8
votes
1answer
294 views

P=NP?-Problem: What are the most promising methods?

I know that P=NP has not been solved up to now, but can anybody tell me something about the following: What are currently the most promising mathematical / computer scientific methods that could be ...
0
votes
1answer
71 views

Any task-control algorithms programming practices?

I was just wondering if there's any field which concerns the task-control programming (or at least that's the way I call it). For a better explanation of task-control consider the following scenario: ...
11
votes
21answers
1k views

Programming an infinitely fast machine with infinite memory [closed]

That is a hypothetical question. If there existed a machine with infinite memory that could execute any set of instructions within the blink of an eye, what would programming that machine be like? I ...
3
votes
5answers
108 views

Can you encode to less bits when you don't need to preserve order?

Say you have a List of 32-bit Integers and the same collection of 32-bit Integers in a Multiset (a set that allows duplicate members) Since Sets don't preserve order but List do, does this mean we ...
15
votes
6answers
11k views

Why are Redirect Results not allowed in Child Actions in Asp.net MVC 2

I have some partial actions that I render with the Asp.Net Futures RenderAction method. Some of these perform redirects after the forms in them have been processed. Now that I upgraded to Asp.Net MVC ...
5
votes
5answers
1k views

Finding prime factors to large numbers using specially-crafted CPUs

My understanding is that many public key cryptographic algorithms these days depend on large prime numbers to make up the keys, and it is the difficulty in factoring the product of two primes that ...
2
votes
5answers
149 views

Constructing regex

I use regex buddy which takes in a regex and then gives out the meaning of it from which one gets what it could be doing? On similar lines is it possible to have some engine which takes natural ...
44
votes
10answers
11k views

In Laymen's terms, what is the pumping lemma

So I saw this question and was curious as to what the Pumping Lemma was (Wikipedia wasn't much help). I understand that its basically a theoretical proof that must be true in order for a language to ...