Tagged Questions

An algebraic system developed by George Boole. Uses operations such as "And", "Or" and "Not" on Binary True/False values. It may be used to accomplish complex tasks.

learn more… | top users | synonyms

209
votes
55answers
42k views

Check if at least 2 out of 3 booleans is true

An interviewer recently asked me this question: given 3 boolean variables a, b, c, return true if at least 2 out of the 3 are true. My solution follows: boolean atLeastTwo(boolean a, boolean b, ...
182
votes
12answers
4k views

Why does (0 < 5 < 3) return true?

This may be a stupid question but I was playing around in jsfiddle.net and I'm curious as to why this returns true? if(0 < 5 < 3) { alert("True"); } So does this - if(0 < 5 < 2) { ...
25
votes
4answers
2k views

Should I always use the AndAlso and OrElse operators?

Is there ever a circumstance in which I would not want to use the AndAlso operator rather than the And operator? …or in which I would not want to use the OrElse operator rather than the Or ...
22
votes
9answers
2k views

What are bitwise operators?

I'm someone who writes code just for fun and hasn't really delved into it in either an academic or professional setting, so stuff like this really escapes me. I was reading an article about ...
16
votes
10answers
10k views

Easiest way to flip a boolean value?

I just want to flip a boolean based on what it already is. If it's true - make it false. If it's false - make it true. Here is my code excerpt: switch(wParam) { case VK_F11: if (flipVal == true) ...
13
votes
11answers
2k views

In C++, why does true && true || false && false == true?

I'd like to know if someone knows the way a compiler would interpret the following code: #include <iostream> using namespace std; int main() { cout << (true && true || false ...
11
votes
17answers
844 views

Using [0,1] versus [“Y”,“N”] versus [“T”,“F”] in a logical/boolean database field?

Just out of curiosity and lack of a definite answer... I was just looking at some data that is sent from a 3rd party to us, and their "Gender" field is a [0,1] denoting either a Female (0) or a Male ...
10
votes
2answers
762 views

why are Javascript negative numbers not always true or false?

-1 == true; //false -1 == false //false -1 ? true : false; //true Can anyone explain the above output? I know I could work round this by comparing to 0 but I'm interested. I'd expect ...
8
votes
2answers
179 views

MySQL view returns more results with an AND?

When I do this: select * from vw_active_employees where division IS NULL; --319 results Makes sense. And, then I do this... select * from vw_active_employees where division IS NULL AND udds IS ...
8
votes
4answers
165 views

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

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

Need guidance towards evaluative boolean logic tree

I can't seem to find a pointer in the right direction, I am not even sure what the terms are that I should be researching but countless hours of googling seem to be spinning me in circles, so ...
7
votes
1answer
90 views

Moving out before brackets with XOR

If I had the sum of products like z*a + z*b + z*c + ... + z*y, it would be possible to move the z factor, which is the same, out before brackets: z(a + b + c + ... y). I'd like to know how it is ...
7
votes
1answer
225 views

Boolean function optimizer package for Python

I'd like to define a boolean function (with n inputs and m outputs) in a tabular form. I'd like to find an optimal boolean expression which implements the function. Optimal here means that, ...
7
votes
4answers
1k views

Boolean expression order of evaluation in Java?

Suppose I have the following expression String myString = getStringFromSomeExternalSource(); if (myString != null && myString.trim().length() != 0) { ... } Eclipse warns me that myString ...
7
votes
5answers
4k views

How can I build a Truth Table Generator?

I'm looking to write a Truth Table Generator as a personal project. There are several web-based online ones here and here. (Example screenshot of an existing Truth Table Generator) I have the ...
7
votes
15answers
1k views

Is it useful in C# to apply DeMorgan's theorem to manually optimize boolean expressions in conditional statements (e.g. if conditions)

Back in the day when I did most of my work in C and C++, as a matter of course, I would manually apply deMorgan's theorem to optimize any non-trivial boolean expressions. Is it useful to do this in ...
6
votes
2answers
139 views

Prolog Beginner - Is This a Bad Idea?

The application I'm working on is a "configurator" of sorts. It's written in C# and I even wrote a rules engine to go with it. The idea is that there are a bunch of propositional logic statements, and ...
6
votes
7answers
628 views

Better ways to find if both variables are true or both are false

I have two variables which can be either true or false. I get these by doing query on database for presence or absence of certain product ids. Now I need to set another variable which will be true or ...
6
votes
3answers
228 views

mysql query with AND, OR and NOT

Lets say I have a table of articles with as many to many relationship with topics. Each topic assigned to an article has a type field which can contain 1 of 3 values AND, NOT, and OR. Articles id ...
6
votes
9answers
710 views

P implies Q, how to read in english

how to read P implies Q in classical logic? example : Distributivity: Ka(X->Y) -> (KaX -> KaY) This is modal logic which uses classical logic rules. KaX : a knows the that X is true. ...
6
votes
4answers
819 views

Boolean Algebra Simplification

Need help have no idea the thought process in doing this kind of simplification. ! - Denotes NOT Lets say I have !((A+B) * (A+!B)) I need to simplify that using all rules except absortion. I know it ...
6
votes
6answers
1k views

How can I implement user-friendly boolean logic in a web form GUI?

Currently I have a web application where a user can use dropdown lists to generate SQL SELECT statements like so: Column Select Dropdown | Operator Dropdown (= != > < <= >=) | Value select ...
6
votes
8answers
2k views

Creating a logic gate simulator

I need to make an application for creating logic circuits and seeing the results. This is primarily for use in A-Level (UK, 16-18 year olds generally) computing courses. Ive never made any ...
5
votes
4answers
121 views

Is (4 > y > 1) a valid statement in C++? How do you evaluate it if so?

Is that a valid expression? If so, can you rewrite it so that it makes more sense? For example, is it the same as (4 > y && y > 1)? How do you evaluate chained logical operators?
5
votes
8answers
176 views

Not able to figure out the logical error in C program

A program that prints its input one word per line. int main() { int c; while ((c=getchar()) != EOF) { if (c== ' ' || c== '\n' ||c == '\t') putchar('\n'); ...
5
votes
3answers
188 views

normalize boolean expression for caching reasons. is there a more efficient way than truth tables?

My current project is an advanced tag database with boolean retrieval features. Records are being queried with boolean expressions like such (e.g. in a music database): funky-music and not (live or ...
5
votes
10answers
175 views

What's the right way to handle “One, Both, or None” logic?

I have a logic situation that is best described as two "Teams" trying to win a task. The outcome of this task could be a single winner, a tie (draw), or no winner (stalemate). Currently, I'm using a ...
5
votes
6answers
422 views

c# Can someone explain this boolean logic

// Example bool is true bool t = true; // Convert bool to int int i = t ? 1 : 0; Console.WriteLine(i); // 1 This converts false to 0 and true to 1, can someone explain to me how the t ? 1 : 0 ...
5
votes
6answers
233 views

How should boolean expressions be written in PHP?

How should the following boolean expression be written in PHP: $foo = ""; if($var==TRUE){ $foo = "bar"; } or if($var==TRUE){ $foo = "bar"; }else{ $foo = ""; } or $foo = ($var==TRUE) ...
5
votes
3answers
355 views

How do I parse boolean logic?

I need to write a boolean logic parser which will translate the boolean logic language to a SQL WHERE clause. The order of the operands will always be in the correct order (with value on the right). ...
5
votes
6answers
345 views

Is this really “correct” and unambiguous?

For one of my beginning CS classes, we are going over "truth functional logic." My question pertains to English translations. Note that ^ is AND; v is (inclusive)OR; ~ is NOT. -> is IF Well, we ...
5
votes
4answers
529 views

Is there a time when && (AndAlso) does not matter over & (And)

If I am evaluating two variables and not two method calls does it matter weather I use "&&" or "&" //some logic that sets bool values boolean X = true; boolean Y = true; if (X & Y){ ...
5
votes
5answers
599 views

Most succinct way to determine if a variable equals a value from a 'list' of values

If I have a variable in C# that needs to be checked to determine if it is equal to one of a set of variables, what is the best way to do this? I'm not looking for a solution that stores the set in an ...
4
votes
3answers
355 views

Optimizing boolean logic tree evaluation

I've got a lot of true/false results saved as bits in long[] arrays. I do have a huge number of these (millions and millions of longs). For example, say I have only five results, I'd have: +----- ...
4
votes
7answers
285 views

Im having issues with applying De Morgan's Law … Feedback?

Im doing my assignments(repeatable) and every time one of these questions comes up I get it wrong, can anyone help me understand what im doing wrong? or is the teachers key off? There is no way for me ...
4
votes
4answers
205 views

In Scheme, can if be expressed as a combination of boolean operators?

It is easy to express and, or, and not in terms of if (with an assist from a local binding for or). I'd like to know if the reverse is true. My naïve first attempt: (if test conseq altern) => (or ...
4
votes
9answers
188 views

In-memory data structure that supports boolean querying

I need to store data in memory where I map one or more key strings to an object, as follows: "green", "blue" -> object1 "red", "yellow" -> object2 So, in Java the datastructure might ...
4
votes
3answers
891 views

Dynamically evaluating simple boolean logic in Python

I've got some dynamically-generated boolean logic expressions, like: (A or B) and (C or D) A or (A and B) A empty - evaluates to True The placeholders get replaced with booleans. Should I, ...
4
votes
2answers
472 views

Tool to refactor boolean expressions

I'm looking for a tool to refactor boolean expression. I've got expressions like a1 => (b1 <=> c or d) AND a2 => (b2 <=> c or d) AND a2 => (b2 <=> c or d) The tool ...
3
votes
4answers
48 views

Can all boolean expressions be written sequentially?

I'm working with some tools, and the only way it can determine if a particular transaction is successful is if it passes various checks. However, it is limited in the way that it can only do one check ...
3
votes
5answers
142 views

php: $a=$b OR $a=$c vs. ternary

I need to assign one of two variables to a third variable, using the value of the second variable if the first is (bool)false or undefined. I usually do this using ternary notation like so: $foobar ...
3
votes
9answers
362 views

What is the meaning of (true && false || true) in C#?

If I have this equation: var x = (true && false || true) Is that equivalent to: var x = ((true && false) || true) or: var x = (true && (false || true)) And ...
3
votes
2answers
358 views

Prolog SAT Solver

I'm trying to build a simple Prolog SAT solver. My idea is that the user should enter the boolean formula to be solved in CNF (Conjuctive Normal Form) using Prolog lists, for example (A or B) and (B ...
3
votes
5answers
119 views

Array AND() ? Logical ANDing of all elements

I have an array and I want to find out if there is at least one false value in it. I was thinking of creating an array_and() function, that just performs a logical AND on all the elements. It would ...
3
votes
3answers
162 views

boolean aggregation patterns in c#

I am writing a little lookup app, where i have a console handy for quick queries against a cache for sanity checks etc.. i.e. get SomeField=Blue this will than get all objects from cache ...
3
votes
1answer
100 views

What is the most efficent way to perform boolean logic operations in C#.NET?

I'm writing a plugin for another piece of sofware we use in my office that will allow users to audit the files they are working on. I'm trying to keep my tool as flexible as possible. The idea I have ...
3
votes
7answers
701 views

C# How do I check if one of two values is TRUE?

Should be a simple question for the C# experts here. I basically want to check if one value or another is TRUE, a wild stab at the code is below: if ((Boolean.Parse(staff.getValue("Male")) | ...
3
votes
4answers
596 views

PHP function to validate array

Is there a function which I could give an array, which would return true if the provided function returned true for all of them? theFunction(array(1,2,3) , 'is_numeric') //true ...
3
votes
3answers
140 views

Can I simplify this conditional statement, which uses the logical negation operator?

Sorry if this is a "Logical Operators 101" kind of question. I've been staring at my screen for 15 minutes trying to wrap my head around it, but I'm stuck. Is there a more concise/elegant way to ...
3
votes
4answers
2k views

How to convert “0” and “1” to false and true

I have a method which is connecting to a database via Odbc. The stored procedure which I'm calling has a return value which from the database side is a 'Char'. Right now I'm grabbing that return ...

1 2 3 4