Tagged Questions

Logic is about reasoning. This tag is appropriate for such things as logic programming, programming problems involving a logical system, or basic questions about the logical systems used in programming.

learn more… | top users | synonyms

63
votes
7answers
2k views

Why if (n & -n) == n then n is a power of 2?

Line 294 of java.util.Random source says if ((n & -n) == n) // i.e., n is a power of 2 // rest of the code Why this is?
51
votes
11answers
8k views

Solving “Who owns the Zebra” programmatically?

Edit: this puzzle is also known as "Einstein's Riddle" The Who owns the Zebra is an example of a classic set of puzzles and I bet that most people on Stack Overflow can solve it with pen and paper. ...
51
votes
4answers
4k views

Why C++ cannot be parsed with a LR(1) parser?

I were reading about parsers and parser generators when I hit upon this statement in wikipedia's LR parsing -page: "Many programming languages can be parsed using some variation of an LR parser. One ...
47
votes
11answers
32k views

How do you get the logical xor of two variables in Python?

How do you get the logical xor of two variables in Python? For example, I have two variables that I expect to be strings. I want to test that only one of them contains a True value (is not None or ...
38
votes
6answers
2k views

General rules for simplifying SQL statements

I'm looking for some "inference rules" (similar to set operation rules or logic rules) which I can use to reduce a SQL query in complexity or size. Does there exist something like that? Any papers, ...
32
votes
16answers
15k views

Looking for simple rules-engine library in .NET

Does anyone know of a good .NET library rules library (ideally open-source)? I need something that can do nested logic expressions, e.g., (A AND B) AND (B OR C OR D). I need to do comparisons of ...
26
votes
3answers
347 views

I can't understand how this javascript function works

I was reading the function definition of bind, but I can't 100% understand the code as written: if (!Function.prototype.bind) { Function.prototype.bind = function(oThis) { if (typeof this ...
25
votes
9answers
533 views

C# elegant way of reading a child property of an object

Say you are trying to read this property var town = Staff.HomeAddress.Postcode.Town; Somewhere along the chain a null could exist. What would be the best way of reading Town? I have been ...
20
votes
6answers
537 views

Can !a!=!!b^!!-!a||!+!a|!c return anything other than 1?

I was playing the Javascript game with somebody and we were having fun making ridiculous and absurd expressions to make our inputs get a particular output. This little charming one ...
20
votes
8answers
1k views

Why do Strings start with a “” in Java? [closed]

Possible Duplicate: Why does “abcd”.StartsWith(“”) return true? Whilst debugging through some code I found a particular piece of my validation was using the ...
19
votes
9answers
2k views

What is fuzzy logic?

I'm working with a couple of AI algorithms at school and I find people use the words Fuzzy Logic to explain any situation that they can solve with a couple of cases. When I go back to the books I just ...
17
votes
8answers
2k views

C++ interview preparation [closed]

I have a Phone interview coming up next with with a company which works in financial software industry. The interview is mainly going to be in C++ and problem solving and logic. Please tell me the ...
16
votes
4answers
844 views

Median of 5 sorted arrays

I am trying to find the solution for median of 5 sorted arrays. This was an interview questions. The solution I could think of was merge the 5 arrays and then find the median [O(l+m+n+o+p)]. I ...
15
votes
12answers
2k views

C#: Detecting sequence of at least 3 sequential numbers from a given list

I have a list of numbers e.g. 21,4,7,9,12,22,17,8,2,20,23 I want to be able to pick out sequences of sequential numbers (minimum 3 items in length), so from the example above it would be 7,8,9 and ...
13
votes
4answers
208 views

Logic game: maximising (or minimising) the chances for two agents to meet

Note: this question is tagged both language-agnostic and python as my primary concern is finding out the algorithm to implement the solution to the problem, but information on how to implement it ...
13
votes
9answers
694 views

Why does IQueryable.All() return true on an empty collection?

So I ran into a situation today where some production code was failing precisely because a method performed exactly as documented in MSDN. Shame on me for not reading the documentation. However, I'm ...
13
votes
10answers
662 views

How does a programmer think?

This may be a hopelessly vague question. But I am interested to hear whatever logical thought processes people go through when learning a new concept or trying to get their brain around code they ...
12
votes
4answers
347 views

Computer logic problem

Consider a multilevel computer in which all the levels are different. Each level has instructions that are m times as powerful as those of the level below it; that is, one level r instruction can do ...
12
votes
7answers
302 views

unusual ternary operation

I was asked to perform this operation of ternary operator use: $test='one'; echo $test == 'one' ? 'one' : $test == 'two' ? 'two' : 'three'; Which prints two (checked using php). I am still not ...
12
votes
6answers
2k views

N-Queens Problem..How far can we go?

The N-Queens Problem: This problem states that Given a chess board of size N by N. Find the different permutations in which N queens can be placed on the Board without any one killing each other. ...
11
votes
3answers
179 views

How are game (e.g. Oblivion) quests modeled? [closed]

I've just started playing Elder Scrolls IV: Oblivion a few days ago, and one thing I cannot help but wonder about is how the quest system is handled programmatically? Specifically, there are many ...
11
votes
4answers
165 views

How can I break the law of non-contradiction in Javascript?

The law of non-contradiction dictates that two contradictory statements cannot both be true at the same time. That means that the expressions (a && !a) (a == !a) (a === !a) should always ...
11
votes
3answers
399 views

Why is ''>0 True in Python?

In Python 2.6.4: >> ''>0 True Why is that?
11
votes
8answers
864 views

Why are default arguments evaluated at definition time in Python?

I had a very difficult time with understanding the root cause of a problem in an algorithm. Then, by simplifying the functions step by step I found out that evaluation of default arguments in Python ...
11
votes
8answers
9k views

jQuery password strength checker

I'm quite new to jQuery, and I've written a simple function to check the strength of a password for each keypress. The idea is that every time a user enters a character, the contents is evaluated to ...
10
votes
1answer
359 views

How to simulate an 'outer join' in core.logic?

I've just started playing with core.logic, and to work on it I'm trying to implement something simple that is similar to a problem that I am currently working on professionally. However, one part of ...
10
votes
7answers
436 views

What is the logic for solving this sequence? [closed]

The sequence goes like this.. 7,8,77,78,87,88,777,778,787,788 and so on.. What can be the logic for finding the nth number of the sequence? I tried that by dividing it by 2 and then by 4 and hence, ...
10
votes
6answers
311 views

Logical problem

I would like to know some solutions to such a problem. It is given a number lets say 16 and you have to arange a matrix this way 1 2 3 4 12 13 14 5 11 16 15 6 10 9 8 7 the language doesn't ...
10
votes
5answers
460 views

XOR of three values

What is the simplest way to do a three-way exclusive OR? In other words, I have three values, and I want a statement that evaluates to true IFF only one of the three values is true. So far, this is ...
10
votes
6answers
204 views

Reason for “all” and “any” result on empty lists

In Python, the built-in functions all and any return True and False respectively for empty iterables. I realise that if it were the other way around, this question could still be asked. But I'd like ...
10
votes
5answers
1k views

Hilbert System - Automate Proof

I'm trying to prove the statement ~(a->~b) => a in a Hilbert style system. Unfortunately it seems like it is impossible to come up with a general algorithm to find a proof, but I'm looking for a ...
10
votes
11answers
263 views

stupid or smart database?

I'm developing an multi-user application which uses a (postgresql-)database to store its data. I wonder how much logic I should shift into the database? e.g. When a user is going to save some data ...
10
votes
6answers
1k views

Advanced Formal logic / Automata Theory textbook

I know this is more a Math/Formal Language/Automata/Computer science question than an a programming one, but I hope I can get some advice on a comprehensible textbook (not an indecipherable monograph) ...
10
votes
8answers
1k views

How do you help people learn logic?

People who are not IT, more specifically programmers, do not have a good way of solving problems. They simply do not think like us, programmers, who have a good logic. I have been asked too many times ...
10
votes
18answers
1k views

C# logic order and compiler behavior

In C#, (and feel free to answer for other languages), what order does the runtime evaluate a logic statement? Example: DataTable myDt = new DataTable(); if (myDt != null && ...
9
votes
1answer
163 views

JavaScript library for logic programming

Do you know of any good javascript library for logic programming? I'm interested in something like jsprolog, but I want to use javascript to communicate with the lib, and not a different language ...
9
votes
4answers
411 views

what is the most efficient way to calculate the least common multiple of two integers

what is the most efficient way to calculate the least common multiple of two integers I just came up with this, it definitely leaves something to be desired int n = 7, m = 4, n1=n, m1=m; ...
9
votes
2answers
611 views

Higher-order unification

I'm working on a higher-order theorem prover, of which unification seems to be the most difficult subproblem. If Huet's algorithm is still considered state-of-the-art, does anyone have any links to ...
8
votes
6answers
397 views

Swap Three Numbers In Single Statement

Is there any possiblty to swap three numbers in a single statement Eg : a = 10 b = 20 c = 30 I want values to be changed as per the following list a = 20 b = 30 c = 10 Can these values be ...
8
votes
2answers
196 views

existential search and query without the fuss

Is there an extensible, efficient way to write existential statements in Haskell without implementing an embedded logic programming language? Oftentimes when I'm implementing algorithms, I want to ...
8
votes
4answers
334 views

What's the approach to solving this kind of logic problem?

What would be the approach to a kind of problem that sounds like this: A says B lies B says C lies D says B lies C says B lies E says A and D lie How many lie and how many tell the truth? I am ...
8
votes
4answers
165 views

Why does [].all?{|a| a.include?('_')} return true?

Why does [].all?{|a| a.include?('_')} return true?
8
votes
6answers
5k views

What can be the efficient approach to solve the 8 puzzle problem?

The 8-puzzle is a square board with 9 positions, filled by 8 numbered tiles and one gap. At any point, a tile adjacent to the gap can be moved into the gap, creating a new gap position. In other words ...
8
votes
4answers
2k views

How to calculate scores?

This question is more related to logic than any programming language. If the question is not apt for the forum please do let me know and I will delete this. I have to write a logic to calculate ...
8
votes
7answers
2k views

Godel, Escher, Bach Typographical Number Theory (TNT) puzzles and solutions

In chapter 8 of Godel, Escher, Bach by Douglas Hofstader, the reader is challenged to translate these 2 statements into TNT: "b is a power of 2" and "b is a power of 10" Are following answers ...
8
votes
11answers
491 views

Are there any tools to aid with complex 'if' logic?

One of my personal programming demons has always been complex logic that needs to be controlled by if statements (or similiar). Not always necessarily that complex either, sometimes just a few states ...
7
votes
2answers
120 views

If Statement True Block Executed When Condition is False

I optimized an extension method to compare two streams for equality (byte-for-byte) - knowing that this is a hot method I tried to optimize it as far as possible (the streams can reach into ...
7
votes
3answers
159 views

Truth Tables from Anonymous Functions in Haskell

I'm trying to generate a truth table for a given boolean expression. I could do this with creating a new Datatype BoolExpr, but I want to do it with an anonymous function. It's supposed to work like ...
7
votes
4answers
247 views

How Can I Speed Up This Anagram Algorithm

I am making a mobile app to find anagrams and partial matches. Mobile is important because there is not a whole lot of computational power, and efficiency is key. The algorithm takes any number of ...
7
votes
4answers
244 views

given a set of conditions, algorithmically determine only one can be True

Given a set of two or more logical conditions, is it possible to algorithmically determine that exactly ONE of them will evaluate to TRUE? For example: # this should pass, since for every X, only one ...

1 2 3 4 5 22