Boolean algebra is the algebra of truth values 0 and 1. The operations are usually taken to be conjunction ∧, disjunction ∨, and negation ¬, with constants 0 and 1.
25
votes
22answers
2k views
How can I write like “x == either 1 or 2” in a programming language? [closed]
Possible Duplicate:
Why do most programming languages only have binary equality comparison operators?
I have had a simple question for a fairly long time--since I started learning ...
25
votes
23answers
1k views
Why do most programming languages only have binary equality comparison operators?
In natural languages, we would say "some color is a primary color if the color is red, blue, or yellow."
In every programming language I've seen, that translates into something like:
isPrimaryColor ...
15
votes
7answers
351 views
Using 'or die()' to stop on errors in PHP
Often in PHP, I see:
$result = mysql_query($query) or die();
Coming from python, I know why this should work, because or returns the first value if it is true in a boolean context, and the second ...
13
votes
6answers
701 views
algorithm to find subset of large int array which matches boolean query
Say I have a large array of M 32 bit ints in which each value has no more than N bits set. Now I want to return the subset which matches the query Target AND Value == Target, i.e. values in which the ...
12
votes
4answers
729 views
Why is 1 && 2 in C# false?
I got frustated with my other question. So i wrote up this example.
In C the below is true. See demo
int main()
{
printf("%d", 1 && 2);
return 0;
}
Output:
1
In C#. It is FALSE. WHY is ...
10
votes
7answers
28k views
Boolean 'NOT' in T-SQL not working on 'bit' datatype?
Trying to perform a single boolean NOT operation, it appears that under MS SQL Server 2005, the following block does not work
DECLARE @MyBoolean bit;
SET @MyBoolean = 0;
SET @MyBoolean = NOT ...
9
votes
2answers
539 views
Why doesn't c++ have &&= or ||= for booleans?
Is there a "very bad thing" that can happen &&= and ||= were used as syntactic sugar for bool foo = foo && bar and bool foo = foo || bar?
8
votes
1answer
102 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 ...
8
votes
4answers
528 views
Is there XNOR (Logical biconditional) operator in C#?
I'm now to C# and could not find XNOR operator to provide this truth table:
a b a XNOR b
----------------
T T T
T F F
F T F
F F T
Is there a specific operator for ...
7
votes
5answers
52 views
Make sure exactly one boolean of a given list is true?
If I have the following booleans
const YESTERDAY = false;
const TODAY = true;
const TOMORROW = false;
What code can I write to make sure exactly one is true?
I've tried this:
$x = self::YESTERDAY ...
7
votes
6answers
1k views
Compute union of two arbitrary shapes
I'm working on an application, I need to be able to combine two overlapping arbitrary shapes as drawn by the user. This would be a Union operation on the two shapes. The resultant shape would be the ...
6
votes
3answers
125 views
String compare on a bool
I'm pretty sure this is a simple fundamental flaw in my newb PHP knowledge, but I was surprised when the following happened:
$result (what's being returned by my method) passes the IF statement. ...
5
votes
8answers
847 views
deMorgan rules explained
Could you please explain the deMorgan rules as simply as possible (e.g. with a secondary school background) ?
4
votes
3answers
100 views
When to use IMP operator in ColdFusion?
Implication: The statement A IMP B is the equivalent of the logical
statement “If A Then B.” A IMP B is False only if A is True and B is
False. It is True in all other cases.
...
4
votes
5answers
117 views
Is there a pattern or a method in C# to check if an (int 1,2,4,8,…) option is true or false
I like to write enum or integer to pass option to my methods. Is there a pattern or a method in C# to check if an (int 1,2,4,8,...) option is true or false. I think it should easily be possible via ...
3
votes
7answers
387 views
Conditional XOR?
How come C# doesn't have a conditional XOR Operator?
example
true xor false = true
true xor true = false
false xor false = false
2
votes
3answers
53 views
Chaining methods with &&
I have a bunch of methods that all return a bool.
If one method returns false then there is no value in calling the following methods, especially as some of them are 'expensive' operations.
Which is ...
2
votes
4answers
141 views
the “|=” operator in c++
I have a question about "|=" in c++, how this operator works, for example:
bool result;
result |= callFunctionOne(sig);
result |= callFunctionTwo(sig);
result |= callFunctionThree(sig);
result |= ...
2
votes
8answers
149 views
Performance of operator| vs operators+
Is there any major difference between | and + that would affect a code's performance in the long run? or are both O(1)? the code i am working with is something like this:
uint64_t dostuff(uint64_t ...
2
votes
2answers
346 views
More RAM efficient boolean array? Arduino environment
I have some code I have in the Arduino environment that requires x (in increments of 8) boolean values that are manipulatable during run time for some shift register code. So currently I am using a ...
2
votes
4answers
114 views
Python Boolean help!
I have a code like this:
if (X or Y) == ("Cat" or "Dog" or "Fish" or "Bird"):
print X, Y
It is only working if X == "Cat". Does anyone know my mistake here?
2
votes
6answers
252 views
How can I use “or” in an if statement in Java without having to retype the whole expression?
I'm writing code for a minesweeper project for class and one method is numAdjMines, which counts the mines around a cell in the array, each type of cell has a different value, like mines are -2, while ...
2
votes
5answers
254 views
Using NOT operator in IF conditions
Is it really a good practice to avoid using NOT operator in IF conditions in order to make your code better readable? I heard the if (doSomething()) is better then if (!doSomething()).
2
votes
3answers
319 views
Can someone please help me with some basic boolean minimization?
Sorry to be annoying, but I am doing a little bit of work at the moment, and am trying to simplify the following piece of boolean algebra so that I can construct the circuit :
A'.B'.C.D + A'.B.C.D' ...
2
votes
8answers
941 views
How to avoid notice in php when one of the conditions is not true
I've notice that when one of the two conditions in a php if statement is not true. You get an undefined index notice for the statement that is not true. And the result in my case is a distorted web ...
2
votes
4answers
96 views
Is it faster to use a complicated boolean to limit a ResultSet at the MySQL end or at the Java end?
Lets say I have a really big table filled with lots of data (say, enough not to fit comfortably in memory), and I want to analyze a subset of the rows.
Is it generally faster to do:
SELECT (column1, ...
1
vote
3answers
64 views
Change a value from 0->1 or 1->0 with only mathematic operations
I have a variable on javascrit, initialized at 0. What I'd like to do is this :
if the value is 0, change it to 1;
if the value is 1, change it to 0;
and I'll avoid conditional statement (like ...
1
vote
2answers
97 views
Annoying casts in C#
I have been writing a rather low level application in C# that uses a lot of bytes shorts and bit manipulation. One thing I noticed is that C# doesn't like to do bit manipulation and use boolean ...
1
vote
3answers
75 views
Boolean algebra and circuits [closed]
EDIT
Alright, so after reading quite a bit I came up with some stuff and I just want to make sure if I'm headed in the right direction.
Sx, Sy, and Sz would be sign bits in a full adder that ...
1
vote
2answers
241 views
Replace least significant bit with bitwise operations
What is a optimal way to replace the Least Significant Bit of a byte, with a provided bit?
I know how to do checking and comparing last bit (using for example posix ffs() function), but I want to ...
1
vote
2answers
303 views
How to represent boolean expressions using if/else statement(s)? Is this right?
Is the expressions
!(a ==b) a!=b equivalent?
i have yes here
!a && b b &&!a
yes
!a || b b ||!a
no
And how to write an if/else statement that stimulates the ...
1
vote
2answers
408 views
Text holes on polygon cylinder - boolean operation Maya 2010
I have been trying to make letter holes on a polygon cylinder. I have made the letter through Text option. I set the height a bit bigger than the height of the cylinder.
Then, using the Boolean ...
1
vote
2answers
596 views
Simple boolean operators for bit flags
I am attempting to learn more about this to implement in my project.
I currently have got this basically:
unsigned char flags = 0; //8 bits
flags |= 0x2; //apply random flag
if(flags & 0x2) {
...
1
vote
1answer
136 views
What simplifies an expression when `!` is applied to `&&` or `||`
5.121 ____ simplifies expression in which ! is applied to && or ||
This showed up on my quiz in Java. I have no idea what it is and it is not multiple choice. Could someone help me?
1
vote
8answers
267 views
C# - OR and AND
Newbie question.
How to calculate the value of the formula A f B, where f - the binary function OR or AND?
Thanks for answers :)
1
vote
2answers
202 views
Variables combined with && and ||
What do the last lines mean?
a=0;
b=0;
c=0;
a && b++;
c || b--;
Can you vary this question to explain with more interesting example?
0
votes
3answers
49 views
How to check if a parameter is null
I'm trying to test for null parameters but you cannot compare an object to null.
The following is dead code:
} else if(x == null){
throw new NullPointerException("Parameter is ...
0
votes
1answer
30 views
is there any boolean algebra expression that can not be put into 3SAT?
This seems to me pretty obvious, There is not but I might be leaving a special case.
As I see it 1SAT (only one literal per clause) and 2SAT can be easily transformed into 3SAT.
An any clause with ...
0
votes
0answers
130 views
Constructing logic gates from only AND, OR and NOT gates
I am doing some revision for my exams and one of the questions that frequently occurs is to construct logic gates using only the functions AND, OR and NOT. The most commonly occurring ones are NAND, ...
0
votes
2answers
93 views
sql: how to select a row with a true value from a column of boolean values after the HAVING clause
HI have 3 product tables, each with 3 columns namely customer name, and boolean optout and blacklist. After the Having clause, there will be 3 rows for each customer name (assuming he has all 3 ...
0
votes
6answers
151 views
Reassigning a boolean if not true
I have a method foo() and foobar() that both return a boolean. Each of them must be executed regardless of the result.
boolean changed = true;
while(changed) {
changed = foo();
if(!changed) {
...
0
votes
4answers
572 views
More than operator in Boolean Logic (Logic gates)
Basically I have 2 unsigned 8-bit binary numbers and I need to use Boolean logic to find out which is larger and I can't for the life of me figure out where to start. Using Logic gates...
Obivously I ...
-1
votes
2answers
65 views
Boolean Expression AND Gate Java
Hi I have a code that when you input an expression it will store to an array but my problem is how can i put * between two variables when the input expression is like ab +c?it says null value.
here's ...