Tagged Questions
0
votes
1answer
40 views
How to simplify boolean function into two logic gates?
Can anyone help me to simplify this boolean function into two logic gates?
C(out) = AC(in) + BC(in) + AB
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 ...
-5
votes
1answer
42 views
Mutual exclusion truth table? [closed]
Can someone give me a truth table of mutual exclusion?
A B| Result
-------------
0 0|
0 1|
1 0|
1 1|
Please fill the Result column so it reflects mutual exclusion.
0
votes
2answers
48 views
PHP SQL query, logicaly parse result
I am trying to generate a logical condition based on weather or not a value is in a table using the code below. The echoed result comes back as ["0"]. How do I parse that so php can interpret the ...
0
votes
2answers
116 views
bitxor, solve equation, boolean logic
I have the equation:
C = A^b + (2*A)^b + (4*A)^b.
Where C and A are known, but b is unknown. How to find b?
All numbers are 8 bit bytes. Is there any possible method much faster than ...
-1
votes
3answers
144 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 = ...
-2
votes
8answers
85 views
How do I determine if *exactly* one boolean is true, without type conversion?
Given an arbitrary list of booleans, what is the most elegant way of determining that exactly one of them is true?
The most obvious hack is type conversion: converting them to 0 for false and 1 for ...
0
votes
1answer
77 views
Karnaugh Map for Logic Function
I have the following boolean function: F=(a1+b1)(a2+b2) and am trying to construct a K-map for it. This is what I have so far:
I'm relatively new to K-maps, so I'm not entirely convinced this is ...
0
votes
7answers
77 views
What Is A Simple Way To Fix These Booleans?
boolean a = true
boolean b = true
<random code in here, booleans may or may not change>
if ((!a || !b) || (!a && !b)){
doSomethingElse();
}
This code is not working for me, ...
0
votes
2answers
155 views
How do I change the value of BOOL?
How do I change the value of a BOOL in Objective-C? lightOn is the BOOL value I need help modifying.
@synthesize button, view;
-(IBAction)torchOn:(id)sender;
{
...
0
votes
0answers
36 views
Logical structure - is this correct?
I have a computational intelligence exam tomorrow and I missed a lecture on boolean logic. I'm just wondering if my assumptions are correct.
Propositional logical structure: (A XOR B) OR C - being, ...
3
votes
1answer
103 views
Basic identities of logical expressions and deriving logical expressions from truth table?
I was wondering what a basic identity of a logical expression is and how to get it. I looked on google but couldn't find anything about it.
Say, for example I have a logical expression ~(~(P ^ ~(P ^ ...
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
1answer
161 views
How to obtain the boolean expression from a 4 input K-Map
I noticed the 4 input K-map is read differently from a 3 input K-map.
I am assuming the A, not A, B, not B, C , not C , D and not D are located differently in a 4 input K-Map.
Can anyone explain ...
0
votes
0answers
41 views
Clarify Boolean expression
X=D(A+XOR(B+C))
Does this translate to D AND (A OR (B XOR C) )?
or possibly D AND ( A OR ( (B OR C)XOR(B OR C) ) )?
I suspect the first one is what is intended even if the second might be ...
2
votes
0answers
84 views
Converting to conjunctive normal form
I'm trying to convert this to conjunctive normal form: ∧0≤i<n ∨0≤j1,j2<n (Ci,j1 ∧ Ci,j2)
which is proving a lot more difficult than I expected.
I can't seem to get rid of the AND nested the ...
0
votes
1answer
50 views
Scheme logic reversal
I'm new to SCHEME, just starting.
I have the following statement inside a (cond statement
((number? (list-ref inputList 0)) (display "First element is not a number"))
My problem is that I need it ...
2
votes
1answer
122 views
Boolean algebra
Can anyone help me with a little Boolean algebra. Wolfram alpha doesn't seem to like this very much. The problem is huge so I'm only showing a small small part of it.
( ( A' or B or C )' or ( A or D ...
0
votes
3answers
73 views
Writing in acceptable values into if statement [closed]
I'm having a little trouble getting this to work, trying to evaluate two values and result in a rule violation but accept N/A as the only acceptable value outside of the values equaling.
here is what ...
2
votes
2answers
129 views
false OR false = true in MySQL? Very odd behaviour
Basically, my 0 OR 0 is returning 1 - that's not really what I wanted :) I'm not really sure why because if I select 0 OR 0 I get 0..
I think this could be because is_premium_dealer is an ...
0
votes
1answer
110 views
Binary logic emulator logic error
If you need any more information just ask.
What I'm trying to do is emulate boolean logic that could be found on a computer in C++ code. Right now I'm trying to create a 32 bit adder. When I run the ...
0
votes
6answers
98 views
performance and elegance issue with boolean syntax
the question is more of a performance issue than elegancy, i speek for my self, but ...
having both options to implemet , which is faster for the cpu to compute, or if at the end it is the same (i ...
4
votes
4answers
123 views
Shorthand for all bools YES or all bools NO?
Often in my code I need to check whether the state of x amount of bools are all true OR all bools are false. So I do:
BOOL first, second, third;
if((first && second && third) || ...
2
votes
2answers
300 views
Doing Trinary logic with java.lang.Boolean and switch
java.lang.Boolean is perfect to handle trinary logic, because it can exactly have three states: Boolean.TRUE (it is the case that), Boolean.FALSE (it is not the case that) and null (we don't know what ...
1
vote
2answers
658 views
Changing a icon in ActionBar depending on a condition
I am updating a record in a SQLite database when the user presses an icon on the ActionBar. The information being updated is a flag that adds a record to a Favourites page.
PROBLEM
When the user ...
2
votes
1answer
218 views
Boolean logic - simplifying sum of products
I've got a question that asks to synthesise the simplest possible sum of products expression for a given function. Basically the function is 1 if AB == CD, and 0 otherwise, which works out like this:
...
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?
...
0
votes
1answer
117 views
Javascript logical search?
I've built a search function for an array of javascript objects along the lines of:
User types text into a form input box
Loop through object array
If object text contains inputted text, push the ...
1
vote
3answers
110 views
Boolean logic issue
I was wondering if there was a shorter way to write
if (test != 'e' || test != 'd')
I want to write it like
if (test != ('e' || 'd'))
Or something like this so i don't have to repeat "test !="
...
0
votes
1answer
762 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 ...
8
votes
9answers
585 views
Booleans have two possible values. Are there types that have three possible values? [duplicate]
I’m writing a function that, ideally, I’d like to return one of three states: “yes”, “no”, and “don’t know”.
Do any programming languages have a type that has three, and only three states? Like a ...
0
votes
3answers
716 views
Compound boolean expressions in Prolog
In Prolog, how do you implement compound logical predicates like (A and B) or (C and D)?
This may seem like a simple question but many approachable online tutorials are not detailed enough on boolean ...
7
votes
3answers
257 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 ...
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' = ...
0
votes
2answers
110 views
More simple logic condition to check non-empty requirements
I have some simple logic to check if the field is valid:
private boolean isValidIfRequired(Object value) {
return
(required && !isEmpty(value)) || !required;
}
it tells that the ...
1
vote
2answers
357 views
Boolean Logic Simulator - StackOverflowError
I'm creating a Boolean logic simulator. I've posted a question regarding the organization and general setup of the application and it's located here: Organizing Simple Boolean Logic Simulator - Java. ...
0
votes
1answer
133 views
What is possible and not is with Prolog?
I'm new to Prolog and to logic paradigm development, but I think this can help me in my application. My first doubt is what can I do this with the language.
I'm doing some text processing/natural ...
0
votes
1answer
135 views
Why are there so many notations for Boolean logic? [closed]
English "and" "or" "not"
Sets ∩ ∪ '
First order logic ∧ ∨ ¬
Combinational logic * + '
C-style programming && || !
Circuit diagrams
Set notation can be explained by the fact that set ...
1
vote
6answers
50 views
Help need for specific boolean logic
CaptchaIsExist CaptchaIsValid = Result
-------------- ------------- --------
true false = false
Any other variations = true
Now how to ...
2
votes
2answers
278 views
Basic Boolean Logic — How to test for condition only if another condition is true
I know this is basic boolean logic, but I'm stuck:
I am looping through database results, and for each one I need to check for the following condition:
if($old_value != $new_value)
If the above is ...
0
votes
5answers
276 views
Php Booleans not working correctly?
I have the following code, I seem to be having problems with booleans in php, when ever i dump out the value of bCreatedEvent it is just empty, what am i doing wrong and I'm using booleans wrong? It ...
0
votes
1answer
240 views
Efficient way to do unions and intersections in mySQL
I have a mySQL table with columns: name and label. If a person, "Bob" has the labels "cool","funny", and "childish", my table would have the corresponding rows: (Bob, cool), (Bob, funny), and (Bob, ...
0
votes
6answers
259 views
Simplifying a boolean logic
I have a function which should return true if all items pass the test. If only one item fails, then the function should return false. If there's no item in the collection the function should return ...
2
votes
8answers
1k views
What does Exclusive in XOR really mean?
Maybe this is just obvious to everyone but can someone explain where XOR (or Exclusive-OR) got its name from? What does the word Exclusive really mean? Not that it matters, but its just stuck in my ...
1
vote
1answer
91 views
Is it safe to refer to a possibly nonexistant variable after a check in an if statement?
Say I have a myObject class with a member called prop. I have a variable var which may or may not be a myObject. I want to check if prop holds a certain value, and if so, do something, and if it ...
2
votes
2answers
194 views
Given a binary boolean formula, how to find primary/root operator?
I have binary boolean functions as input strings and need an efficient way to find the "primary" or "root" operator. Some restrictions on the form of the formula are that there is only "and" and "or" ...
0
votes
1answer
570 views
Concept of true,false logically and numerically?
I was asked this question in an interview! I just wanted to know what the right answer to this is. I told that logically the concept is represented by bool data type(C#).A variable of bool data type ...
2
votes
5answers
349 views
Simplification of boolean formulas without negation, just and/or
I'd like to preprocess boolean formulas so that
a and (a or b) and c
becomes just
a and c
There are never any negations, so it should be a simple problem, but nothing really obvious comes to ...
13
votes
6answers
1k 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 ...
6
votes
3answers
1k views
What is the Objective-C way of getting a nullable bool?
How should I go about getting a bool value that I can assign true, false and nil to in Objective-C? What is the Objective-C way of doing this? Much like C#'s Nullable.
I'm looking to be able to use ...
