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.
1
vote
4answers
40 views
Multiple if statements for function to load [closed]
I'm trying to make an if-statement, were two parameteres needs to be there for the function to load, else should nothing happen.
Here it says form = false OR question.length == 0. But I need both not ...
0
votes
3answers
15 views
Excel 2010: Inserting AND operator into function that returns true if referenced cell has value
As best I can tell, IF([cell],TRUE,FALSE) is always returning TRUE if [cell] contains a value, but I can't find any documentation on this sort of truth-value test in Excel 2010. I don't know what it's ...
1
vote
1answer
48 views
Assembly - bit mask for non power of two intervals
I have an array of integers in the [0,5000) range and I want to split them in 5 intervals ([0,1000), [1000,2000), ..., [4000,5000)) in assembly. I used an approach which although correct has room for ...
0
votes
0answers
35 views
Is there a system for realizing digital logic functions without branches?
I was going to ask this on Electric Engineering, but decided it's more related to programming.
With digital logic, we can reduce truth tables to minimized functions using Karnaugh diagrams or ...
1
vote
3answers
63 views
What is the difference between Verilog ! and ~?
So it ended up that the bug that had kept me on for days, was a section of code that should have evaluated to False evaluating to True. My initial code went something like:
if(~x && ~y) ...
0
votes
2answers
68 views
Language: Python(vers3.3); If statements inside while and if statements
My program is unable to go into the last of my if/else statement.
My code:
def main_prog():
while True:
data_dict = {'123': 'viksun', '111': ['tord'], '333': ['test']} # Data storage.
...
-1
votes
1answer
16 views
Quantum Boolean Logic
I was reading about Quantum Computing, new approaches to programming, etc, and find out that when Quantum computing becomes our today, that will be a major change in the society of software developers ...
1
vote
1answer
46 views
Logical error in my Python program?
I am attempting to write a simple program that will simulate a number of rock paper scissors games, and return the number of wins each item has, based on a number of games the user puts in to ...
-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
1answer
14 views
Anyway to prove the boolean algebra theories 9 and 10?
I have a problem grasping the fact that A + AB = A and A(A + B) = A
Can anyone tell me how?
-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
57 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 == ...
2
votes
1answer
67 views
Test cases for DNF normalization: break my code with your test case [closed]
I'll give up 100 points, once I can put on a bounty, to the first poster that invents a test case breaking my routine for normalizing propositional logic statements into Disjunctive Normal Form. I'll ...
1
vote
2answers
32 views
Combinational Circuit with LED Lighting
Combinational Circuit design question.
A
____
| |
F | | B
| |
____
| G |
E | | C
| |
____
D
Suppose this is a LED display. It would take input of 4 bit
...
-1
votes
2answers
14 views
SQL Boolean Logic Conditions
I am confused on this statement and why it is true.
If type is 'rare', then price must be over $500
This condition meets it, but I am confused how.
CHECK (type <> 'rare' OR price > 500)
...
1
vote
1answer
32 views
Forcing statement after && to execute when statement before the && is false
I have set up form validation using a validate function that runs for a single field, changing its formatting and returning a Boolean. Then to validate the form I have
var isValid = validate(field1) ...
2
votes
2answers
52 views
Cannot create zip archive
I am trying to debug this script to run on localhost. $zip->status returns 0, which, according to The Manual means "no error", yet file_exists() still returns false.
I checked manually and the ...
1
vote
2answers
65 views
C++ implementation (XOR,IMPLIES,IFF)
Truth table:
P-----------Q-----------XOR-----------IMPLIES-----------IFF
T-----------T--------------F---------------T-----------------T
...
1
vote
2answers
48 views
Odd JavaScript Behavior When Comparing Numbers Larger than 1000
I wrote a javascript function that is supposed to check if an amount is greater than 0 and less than a certain amount. For example, if the total amount due is $800.00, and the user tries to pay $1100, ...
2
votes
1answer
53 views
How to incorporate Quine–McCluskey Algorithm with Composite Specification Pattern
I want to incorporate the Quine–McCluskey Algorithm with Composite Specification Pattern.
First, let's consider the basics, the Specification pattern in C#:
public interface ISpecification
{
...
0
votes
1answer
30 views
How to tokenize boolean expression strings?
I have a boolean expression as a string, and want to split it in a certain way.
Looking at the following example, I'd like 3 splits: in, out, sig:
(in == 1'b1) | !out & (sig==1'b0)
Probably ...
2
votes
3answers
95 views
How can I obtain the element-wise logical NOT of a pandas Series?
I have a relatively straightforward question, today. I have a pandas Series object containing boolean values. How can I get a series containing the logical NOT of each value?
For example, consider a ...
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 ...
0
votes
0answers
29 views
SAT in real programming scenario
I read about SAT and SMT. I always wonder how it can be applied in real programming scenario.
Here is an example:
Given that var a = 20; var b = a; are true, we want to know if b = 20 is true or ...
0
votes
2answers
44 views
simplify a boolean expression Q = (a' + b')' + a.b'
How can simplify down the following boolean expression ?
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
70 views
Combinational division in HDL
I am trying to come up with a way to estimate the gate count if I were to implement a purely combinational 64-bit division.
I can't get my synthesis tool to generate a combinational 64-bit/64-bit ...
0
votes
1answer
21 views
Best Way to Switch a Bit in an Integer?
Say I want to switch the 5th bit in a 32-bit / 64-bit integer (zero based, bit-index = 4). What's the most performant way to do that ?
Example in byte length: 01001010 → 01011010
Languages of ...
0
votes
0answers
12 views
Getting started on Boolean structured query search engine?
Not sure exactly what it's called (that by itself should make a good start) but I'm wanting to get a basic understanding of web search queries that use Boolean decision trees. For example, I can type ...
1
vote
0answers
101 views
Error Correcting Code (7,4) [closed]
For the 7 bit hamming code is there a formula that provides the outputs of the four values? Without using matrix algebra, I'm wondering because I found a way to express d_1,d_4 as values of the check ...
0
votes
2answers
42 views
OR-gate equalization [closed]
I'm trying to do a n-input (n>50) OR gate in VHDL to synthesize on an FPGA (namely Altera Cyclone IV).
This is the code I wrote:
output <= '0' when to_x01(input) = (input'range => '0') else ...
0
votes
4answers
82 views
Three conditions in while statement in java
is this wrong? I want to exit the while loop when the Ran1,Ran2,Ran3 are all the same. tnx
Random RandomNumber = new Random();
int Ran1 = RandomNumber.nextInt(4);
int Ran2 = RandomNumber.nextInt(4);
...
-1
votes
1answer
191 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
140 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
4answers
120 views
In C, I'm using Boolean logic to go to the beginning of my program via a while loop, but my variables are not reinitializing after I tell them to [closed]
I'm trying to make a program that allows a user to discover the sum of the even terms in the Fibonacci series up to an arbitrary, user-defined length. I'm making it so that the user has a chance to ...
-2
votes
3answers
72 views
homework: Trying to sort out what operation I am attempting to compute C
Sorry for asking you guys and not my professor. (its due in a couple of hours and she is not available)
but I am just looking for a point in the right directions.
one piece of what I am writing ...
3
votes
1answer
57 views
Optimizing Boolean Compares Between Arrays with Python
I've got some Python code I'm trying to optimize. It deals with two 2D arrays of identical size (their size can be arbitrary). The first array is full of arbitrary Boolean values, and the second is ...
2
votes
2answers
30 views
Remove bits from number
I have some bit flag, where:
A = 1 (0001)
B = 2 (0010)
C = 4 (0100)
D = 8 (1000)
I would like to set bit A and C in my flag: flag = A | C
Now my flag is 5 (0101).
I need to delete bit C from ...
0
votes
0answers
224 views
Logic circuit for 4-2 encoder
I have to build the logic circuit for a 4 to 2 encoder where in the truth table, if only one of the inputs is on the error signal (result) is 0, but if there is more than one, or no inputs on, then ...
1
vote
1answer
203 views
VHDL: How to check selected bits of a vector
I'm wondering if there is a way to check only the bits I'm interested in of an std logic vector in VHDL. My newest attempt looks like this:
IF (vectorname = "1-00") THEN
action
END IF;
I am here ...
0
votes
1answer
84 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
146 views
Boolean logic doesn't work as I expect in twig
{{ dump(extend) }}
Result:
boolean false
And when I want to make this:
{% if extend is true %}
{% extends 'WelcomePageBundle:Default:welcome_page.html.twig' %}
{% endif %}
It ...
1
vote
3answers
207 views
JavaScript if statement always returns true
corresponding html:
<html>
<title></title>
<head>
</head>
<body>
<FORM NAME="Calculator">
<TABLE BORDER=4>
<TR>
<TD>
<input type="text" ...
0
votes
0answers
47 views
A custom DSL for Boolean logic
I'm designing an application that takes discrete answers to a questionnaire and turns them into a series of yes/no decisions. The way that the system arrives at these yes/no decisions should be ...
1
vote
8answers
90 views
Do loop while input isn't a or b?
I'm doing the finishing touches for a class project and I'm adding in a safety net for one of my user inputs. I have it set so that if the user puts in "1" or "2", the data they enter will be ...
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
181 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
376 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
37 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 ...

