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.

learn more… | top users | synonyms

0
votes
1answer
29 views

Django - Functions in models and views don't return correct Boolean value

I am creating a django app/website and am in trouble with some Boolean results I don't understand. In my models, I have a Article class with 2 functions : class Article(models.Model): #some vars ...
-4
votes
1answer
24 views

return type of bool function

what is the return type of this sort of bool function...... i know the return type is either true of false but this seems complicated when you have got like this.. bool mypredicate (int i, int j) { ...
-2
votes
3answers
45 views

Boolean-logic simplification, why is Ā Ē Ū + A Ē Ū + Ā Ē U = Ē (Ā + Ū) [closed]

I was reading a book which claims that Ā Ē Ū + A Ē Ū + Ā Ē U = Ē (Ā + Ū) but didn't explain why. Working it out, I can't seem to ...
0
votes
0answers
24 views

Boolean Logic & gate delays

Assuming 2 gate-delays for a Sum or Carry function, estimate the time for ripple-through carry addition for adders with the following word lengths:- i) 4-bit ii) 8-bit iii) 16-bit In my notes I ...
-1
votes
2answers
27 views

Programming issue boolean logic

I have an issue where I need to create some buttons depending on some boolean values. If button1 = true I should create button1, if button2 = true I should create button2 and if button3 = true I ...
-1
votes
3answers
153 views

Is it faster to constantly assign a value or compare

I am scanning an SQLite database looking for all matches and using OneFound:=False; if tbl1.FieldByName('Name').AsString = 'jones' then begin OneFound:=True; tbl1.Next; end; if OneFound then // ...
2
votes
1answer
281 views

Three.js polygon triangulation fails in pseudo duplicate points

In three.js there is a function triangulateShape(). Now I encountered a failure to triangulate polygons that are simplified using Javascript Clipper. Simplifying in Clipper is done using Unioning. ...
5
votes
7answers
183 views

Underlying philosophy behind php type comparisons

So there's this page on the php site which shows the result of comparing different values: http://php.net/manual/en/types.comparisons.php This is a helpful reference, but I would rather not have to ...
4
votes
1answer
39 views

Javascript approaches to boolean reversal

The following applies to any boolean variable, but I was writing a little function in javascript which reverses the check in a given checkbox, became bored, and wondered how much I could condense it. ...
-1
votes
1answer
135 views

The ? boolean zen operator [duplicate]

Ive never used the ? operator before and i'm trying to figure out how it works. I have been reading countless pages and decided to try for my self. i have the following statement: ...
0
votes
1answer
98 views

Boolean operators in if/ifelse loops

with a matrix like this r<-20; c<-6; m1 <- round(matrix(runif(r*c), r, c))) I would like to creat two new columns which are based on the last three using i.e. if/ifelse and boolean ...
1
vote
2answers
81 views

Printing a boolean boolean value between classes

I'm relatively new to Java. I got an assignment where I have to output a object of a class showing its properties and also turn it on.The object is a 'fan' and I can print all its properties from the ...
0
votes
3answers
84 views

why assignment operators return non boolean value

I tested result this javascript expressions in chrome browser console (output result is bold): a = false false b = false false a||b false a|=b 0 why in the last expression (a|=b) does not return a ...
0
votes
2answers
97 views

sense of if - how is it possible that works

I'm watching Mojam (live games programming, on HumbleBundle) and I saw this piece of code there (here is screenshot of code) I'm wondering how come the condition expression in last if statement (which ...
0
votes
1answer
72 views

Simplifying a Boolean expression

How would you simplify this boolean expression? I don't know how to apply the boolean laws with the implication sign. (pq -> r)' and (p -> (q'r))'
-1
votes
1answer
89 views

Boolean Expressions with DeMorgan’s law [closed]

I need help using De Morgan's law to derive an expression that is equivalent to ('A + B + 'C)D but uses only AND and NOT operations (but no OR operation).
2
votes
2answers
103 views

Resolving graphs (possibly containing cycles) of dependancies and conflicts

Given a graph where each node may contain arbitrary dependencies or conflicts with other nodes leading to any possible arrangement including circular and contradictory references. I'm trying to ...
1
vote
3answers
133 views

How to test a bit in a decimal number

I have a set of decimal numbers. I need to check if a specific bit is set in each of them. If the bit is set, I need to return 1, otherwise return 0. I am looking for a simple and fast way to do that. ...
1
vote
2answers
77 views

using [Authorize] mvc3

So at the top of my controllers i've added in [Authorize], So far so good only logged in users can access these pages (Person and Holiday) However the tabs in the homeController which navigate the ...
1
vote
0answers
227 views

simplfy and apply Demorgan law to the f(a , b,c)

given this function F(a,b,c) = aba + c’ab + c’b’ + c’b + b’cb + abc ask as to simplfy it .. Use DeMorgan’s law to find the complement F’(a,b,c) of F(a,b,c)? I simplfy it and get this answer ...
4
votes
4answers
129 views

Why are there 2 boolean type operators in Java?

As said in thinking in Java if you have 2 boolean objects, x and y you can use either x= x&&y and x=x&y on them, so why its necessary having both types?
0
votes
0answers
163 views

Convert boolean algebra expression to NAND

I have to convert this expression: f = abc+b'c+a'c to a NAND expression. I tried this: Is my result ok? If not, would you please help me to correct my errors?
0
votes
2answers
78 views

Programming is asking for input twice

I'm having some troubles with the beginning of this program. It's supposed to take a number and determine whether or not it is perfect. Currently I have it asking how many numbers to check, whenever I ...
1
vote
3answers
92 views

Convert function with only AND Boolean operations

I have some function like (A and ( B or c)) or (D and E and (F or H or R or P ))) and I want to convert that function to function with only and operations (of course if possible) I find that with ...
0
votes
4answers
68 views

OR operator doesn't evaluate both statements, only 1

std::ifstream file_1(argv[1]); std::ifstream file_2(argv[2]); ... std::string dummy_1; std::string dummy_2; ... while(std::getline(file_1, dummy_1) || std::getline(file_2, dummy_2)) // the problem { ...
0
votes
1answer
93 views

How to compare boolean vectors in R

I have a vector v and I want to find all those elements, that have values between 4 and 7. v = c(1:9) # indices of elements with values larger than 4 which(v > 4) # indices of elements with ...
2
votes
3answers
93 views

how to decide on a bool operators usage, performance issues vs readability [closed]

Having even more than two options to choose from, leads me to question, which one to choose, if the result / outcome is same. in .NET C# the following conditions are asking same question using ...
2
votes
2answers
74 views

check at least two out of ten booleans are true

In a case where at least two out of three booleans are true, this is the easiest way to find out: BOOL a, b, c; -(BOOL)checkAtLeastTwo { return a && (b || c) || (b && c); } What ...
0
votes
1answer
148 views

7-bit two's complement

Is there an easy way to figure this out? What is the lowest (most negative) number that can be represented by 7-bit two's complement? Show how to convert the number into its two's complement ...
1
vote
1answer
85 views

Python : Why does False or 'name' returns 'name' and not False?

AFAIK : and, or are boolean operators and any boolean expression should return a boolean. So, why does this happens : False or 'name' returns 'name' and not True True and '' returns '' and not ...
0
votes
2answers
130 views

Boolean algebra simplification to lowest form [closed]

I am relearning Boolean algebra for a class, but I cant seem to simplify this expression any further. It is possible that its fully simplified but I wanted a second opinion. the expression: ...
0
votes
3answers
63 views

loop though an array and return a set of array index's values concatenated in one variable

The question it's not so relevant but what I want to achieve is the next : var some_array = [Modernizr.json, Modernizr.csstransforms]; var tests = function() { for (var i = some_array .length - ...
1
vote
2answers
72 views

!!(new Number(0)) == true, but !!(Number(0)) == false, why?

Why do the last two behave differently (tested on Google Chrome's console)? /* number */ /* string */ 0 == false; '' ...
1
vote
1answer
295 views

How to calculate boolean expression in Spirit

I found a really good example about boolean translator, * Boolean expression (grammar) parser in c++ What I am thinking now is to do a further step, translate (!T|F)&T into F or 0, so it is very ...
1
vote
4answers
714 views

Multiple Conditions in a while loop PHP

What is the correct way to use boolean operators to have multiple conditions in a while loop? I have this script here that I feel SHOULD work, however it comes up blank when I run it. $string = ...
7
votes
1answer
135 views

How can I represent a self-enumerating pangram as a boolean function?

The wiki article for self-enumerating pangrams states that they are computed using Binary Decision Diagrams. I've been reading about BDDs and from my understanding you need to represent some problem ...
1
vote
1answer
68 views

fastest method for minimum of two numbers

I was going through mit's opencourseware related to performance engineering. The quickest method (requiring least number of clock cycles) for finding the minimum of two numbers(say x and y) is stated ...
4
votes
3answers
257 views

boolean expression in C

I found this expression in a C program and I didn't get it : struct stack_rec *ss; ss=(struct stack_rec *)EMalloc(sizeof(struct stack_rec)); if ...
0
votes
3answers
83 views

Operating with booleans in PHP

Well, I come from compiled languages as Java and now I am trying to deal with PHP in some specific areas. Today, I have created a "test form" in order to know how to check for valid values, and now I ...
3
votes
3answers
217 views

Performance Degradation while using bit fields in C++ [closed]

I am supposed to parse a message and its parameter. While tracking the mandatory occurrence of certain parameters I am using boolean data type. For example if there is a parameter X in a message I am ...
0
votes
1answer
86 views

MySQL data structure vs. calculated data for Checkbox type data

Assuming you have a multiple boolean fields within a common category, which database storage method is more efficient for both speed and processing (for both MySQL and PHP)? For example, if choosing ...
0
votes
1answer
832 views

What's the difference between the dual and the complement of a boolean expression?

Its the same thing right? Or is there a slight difference? I just wanna make sure I'm not misunderstanding anything.
0
votes
1answer
41 views

Working with values of 0 and 1 (Boolean)

Is f = a'ab; the same as f = 1 Is this possible? I got this when I was simplifying something.
1
vote
1answer
96 views

Is this the simplified version of this boolean expression? Or is this reviewer wrong

Cause I've tried doing the truth table unfortunately one has 3 literals and the other has 4 so i got confused. F = (A+B+C)(A+B+D')+B'C; and this is the simplified version F = A + B + C ...
0
votes
3answers
2k views

What are the advantages/disadvantages of using the karnaugh map instead of the truth table

What should I use? Or are there special occasion where I should use one over the other?
0
votes
2answers
407 views

How was this boolean expression further simplified?

(ab+cd)(a'b'+c'd') = 1+ abc'd' + a'b'cd +1 so I'm stuck at abc'd'+a'b'cd but the final answer is (a+b)(c+d)+(a'+b')(c'+d') What am I missing?
1
vote
2answers
1k views

Why are products called minterms and sums called maxterms?

Do they have a reason for doing so? I mean, in the sum of minterms, you look for the terms with the output 1; I don't get why they call it "minterms." Why not maxterms because 1 is well bigger than 0? ...
2
votes
3answers
115 views

Confusion with bitwise operations &

The following line should be testing whether the current file is a directory or not: if ((stbuf.st_mode & S_IFMT) == S_IFDIR) //file is a directory. where stbuf is of type struct ...
0
votes
6answers
149 views

Can I use a boolean AND condition in a regular expression?

Say, if I have a DN string, something like this: OU=Karen,OU=Office,OU=admin,DC=corp,DC=Fabrikam,DC=COM How to make a regular expression to pick only DNs that have both OU=Karen and OU=admin?
9
votes
2answers
287 views

&&= in C#? (boolean expression) [duplicate]

Possible Duplicate: Why are there no ||= or &&= operators? By pure accident I found out today that a &= getBool(); is NOT the same as a = a && getBool(); I must ...

1 2