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 ...
0
votes
2answers
64 views

python boolean key for a dictionary

I want to use a group of booleans as a key for a dictionary so (weather == sunny and temp == warm) would be 11 or True,True while (weather == sunny and weather == cold) would be 10 and (weather == ...
0
votes
0answers
13 views

cafeobj syntax with boolean equation

Can anyone help with syntax in Cafeobj. I am trying to find the boolean value for P. original problem: (w or p) and (w implies b) and (not b) = p my unfinished attempt in cafeobj: set include BOOL ...
2
votes
1answer
46 views

Is there a way to say ∃! in prolog?

In prolog, is there a way to say "there exists exactly one" (∃!)? I was thinking about doing something like % a predicate which is proven true if there is only one tall person only_one_tall() :- ...
-1
votes
1answer
194 views

Why does the SimCity 2013 Always-Online source code use !0 and !1 instead of true and false? [closed]

Source code is here: http://pastebin.com/8NR1EdkN In multiple locations, the developer uses !0 and !1 to represent true and false, respectively. Why? The only reason I can think of is to save some ...
-1
votes
3answers
147 views

Regular expressions in javascript

Hi I'm new to javascript and I have the following function: function checkform() { var theForm = document.getElementById('login_form'); var regName = /^[a-zA-Z ]+$/; var firstname = ...
0
votes
1answer
85 views

Algorithm to Calculate Density of Boolean Function

I'm trying to write a program that requires the calculation of a specific value dealing with Boolean functions. Given a single-output Boolean function f, given by a cover F, let's say I define the ...
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 ...
-3
votes
2answers
185 views

Boolean Algebra And DeMorgan Laws [closed]

I am trying to find the complement of a function: X(Y+Z!W+!VS) utilizing DeMorgan's laws. I also need to express the result as a Sum Of Products. I think the complement should be: !X + ...
1
vote
1answer
381 views

Simplifying 4 NAND Gates Into 1 XOR Gate Boolean Algebra?

I am trying to understand with boolean algebra how using 4 NAND Gates can be equivalen to 1 XOR gate. If we look at this picture from wikipedia http://en.wikipedia.org/wiki/XOR_gate#Alternatives ...
0
votes
1answer
39 views

Simplifying Boolean Algebra [closed]

I am trying to prove that BC + !A!B + !A!C = ABC +!A I have attempted using De Morgan laws, and substituting X for !A!B and Y for !A!C, however I made no headway in this. I"ve alos tried gruopoing ...
1
vote
1answer
90 views

Is there an efficient algorithm to find which composition of boolean functions will match the output of a given boolean function?

Suppose I have the following boolean functions. def Bottom(): return False def implies(var1, var2): if var1 == True and var2 == False: return False return True def land(var1, var2): ...
0
votes
1answer
97 views

Not able to implement boolean logic properly

Here is what im trying to achieve: I have ActioBar and I have a menu item named Login over the ActionBar. When this login menu item is clicked it adds a new tab in the actionbar and loads the fragment ...
0
votes
2answers
131 views

Handling Multiple Boolean Combinations

I have 5 boolean variables a,b,c,d and e. So for each different combination of true and false of each variable there is a different print statement. Say for example: a b c d e --- Print Statements ...
0
votes
4answers
107 views

How can I find the result of a Bool ArrayList comparing its Bool values?

If I have an ArrayList include boolean values, what is the best way to find out the result of this sequence of Bool values ? I was trying something like this bool result = false; bool flag = ...
1
vote
1answer
69 views

Dealing with multiple BOOL combinations

Here is the scenario: In my app I'm syncing some data, whenever there is some error when syncing I flag this in a BOOL. When all syncing is complete I want to display sync feedback (errors) for the ...
1
vote
3answers
89 views

Converting conditions with parentheses to equivalents with no parentheses

I am developing an app where a user is able to add conditions to certain tasks. For example he could have conditions a, b, c, d and combine them in a way where in the end it looks like : (a AND b) ...
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 ...
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 ...
1
vote
3answers
69 views

Convention of setting return type in php boolean functions

Is it good to explicitly 'return FALSE' in a Boolean function or just 'return TRUE' Example A: function check($link){ if(isset($link)){ return TRUE; }else{ return FALSE; } OR Example ...
0
votes
3answers
59 views

Weird boolean evaluation behaviour in PHP

Let me share some PHP code with you: $var1 = ''; $var2 = 0; echo '<pre>'; var_dump($var1 == $var2); //prints bool(true) echo '</pre>'; echo '<pre>'; var_dump($var1 != $var2); ...
0
votes
2answers
1k views

How many Distinct n variable boolean functions are there? [closed]

Since there are n variables wouldn't there be 2^n boolean functions?
5
votes
5answers
459 views

Validate a Boolean expression with brackets in C#

I want to validate a string in C# that contains a Boolean expression with brackets. The string should only contain numbers 1-9, round brackets, "OR" , "AND". Examples of good strings: "1 AND 2" "2 ...
2
votes
2answers
92 views

What does Python return when we return with logical operator?

I was reading someone else's code and he had something like this: return val1 and val2 I tried this in the Python interpreter and it gave me the latter value on AND while OR gives me the prior ...
6
votes
7answers
1k views

if (boolean == false) vs. if (!boolean) [duplicate]

Possible Duplicate: Is it bad to explicitly compare against boolean constants e.g. if (b == false) in Java? In this NotePadProvider sample code, I noticed that the the author chose the ...
0
votes
2answers
183 views

How to use invert some boolean variables on single line in C#?

I read some articles from Stackoverflow.com, especially: What's the most concise way to get the inverse of a Java boolean value? Easiest way to flip a boolean value? What's happens if I have ...
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
98 views

Understanding “not” on booleans

My question seems simple, but I've been perplexed about it: bool myBool = TRUE; if (myBool) printf("1 myBool = true\n"); else printf("1 myBool = false\n"); myBool = !myBool; if (myBool) printf("2 ...
0
votes
5answers
95 views

How to return answer of three fourths of Booleans in java

Hey guys I was wondering if there was any way to return a certain fraction of a bunch of booleans in java. Simply put I would like to find out if there is a way to create a method that when given four ...
0
votes
2answers
2k views

Comparing boolean values

I am facing an issue while comparing boolean values, I want the loop to enter inside the block but its not entering the block. else if (!(keyCompare.contains(compareKey)) || (save == true)) { //do ...
0
votes
1answer
344 views

matlab boolean operator

I have a problem with the MATLAB boolean operator. Non-ASCII range: 0 - 2 Above 128 The if condition becomes true only if there are no characters in the above ranges. if any( out.autoc < 128 ...
0
votes
1answer
763 views

Converting a function from AND, NOT and OR gates to just NOR

I have a circuit made from AND NOT and OR gates, i need to convert it so that it only has NOR gates, this isn't working to well for me so any tips would be much appreciated. This is the original ...
0
votes
3answers
5k views

How to convert a boolean expression from AND and OR to only NAND

I have a task that's driving me crazy because i have no clue where to start. The task is the following: Convert the given boolean expression so that it only contains NAND operations and no ...
0
votes
2answers
172 views

Evaluating strings against boolean truth functions

I've searched and still don't have a clue here, so please bear with me. I have strings, each corresponding to a particular feature matrix. Examples: 'a' = [-vegetable, +fruit, +apple, -orange] 'o' = ...
3
votes
4answers
112 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 ...
1
vote
1answer
96 views

Combine two boolean equations to separate a boolean variables from others

I have 2 programs: X and Y. X has two bitmaps A and C. X calls Y. Y has a bitMap B. The code I need to execute in Y is if AB == B && BC == C //do some action Z I want to combine ...
0
votes
1answer
188 views

What's an “auto-casting bool”?

On the following answer to a previous question someone mentioned an "auto-casting bool" I guess null has an auto-casting bool that is false. What is it, and what does the code that makes it look ...
0
votes
5answers
429 views

Logical Complement Operator?

is it possible to use the logical operator "!" on object that holds a value of true or false? specifically for an object like this? public class Briefcase { private final double amount; ...
7
votes
8answers
2k views

Check if multiple values are all false or all true

How can I check if 20 variables are all true, or if 20 variables are all false? if possible without using a really long if ... the variables are actually array elements: array('a'=> true, 'b'=> ...
2
votes
6answers
6k views

How do I compare string and boolean in Javascript?

I got the Json "false" from server. I respond as bool but it's Json so it's in browser type is String instead of bool. So if I run (!data) whenever I want to check "false" == false then they not ...
1
vote
1answer
199 views

Prevent a boolean variable returning to false in JavaScript

I just want to check I'm doing this right. I have a variable bar that starts false and is set true if a function foo() returns false, however I check foo() against several arguments and don't want bar ...
4
votes
4answers
2k views

Simplify boolean expression algorithm

Anybody knows of an algorithm to simplify boolean expressions? I remember the boolean algebra and Karnaught maps, but this is meant for digital hardware where EVERITHING is boolean. I would like ...
0
votes
2answers
290 views

Boolean algebra - Finding an item exists or not?

I have the following items Apple= 00000001 (1) Mango= 00000010 (2) Banana= 00000100 (4) Grapes= 00001000 (8) Now I am storing the fruits a user can have like this by doing or'd ...
3
votes
3answers
231 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 ...

1 2