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
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 = ...
0
votes
0answers
225 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 ...
0
votes
1answer
36 views

Temperature logical expressions

I'm working on some logical expressions. I want to merge 2 expressions into one but not right sure how. I am using the VDM Overture Tool. I am looking at set of 5 temperatures. Some are over 400, ...
1
vote
5answers
100 views

Why does this logical/bitwise operation return 1?

I don't understand why the following returns 1: 0x0102 && (0xff << 8) From my understanding, bit-shifting 0xff by eight to the left results in 0x00; and anding that with anything ...
0
votes
2answers
46 views

Manually evaluating logical expressions

I'm not sure if this belongs here, but I was told to evaluate (00110101 ^ (10010101 v 10100000)) How is my answer suppose to look like? I was wondering how I would do this? I'm thinking of treating ...
0
votes
1answer
35 views

Getting/sorting by range of numbers - syntax issue

I'm using octave and I'm having trouble sorting out a range. I can do the delta section by just saying include anything less than or equal to 4. But I forget how to select a range of numbers for the ...
4
votes
3answers
110 views

Algorithm For Intesection of Logical Expressions?

Given a set of n elements U, and a set of m properties P where each element of P defines a function from U to boolean. Given two composite logical expressions of the form (recursively defined): p1 : ...
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 ...
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 ...
1
vote
1answer
43 views

Minimize the Logical Design

i'm working for logical designs at the moment where i need to minimize the statement and than need to design the expression. i have a statement that i need to minimize which is : ...
2
votes
2answers
67 views

Given the phrase “Where NONE of the following are TRUE” and two statements how should a boolean logic be composed?

**UPDATED with a better example Let's have two statements (value > 15) (value > 25) And a list of items with the following values 10 20 30 This is what a truth table would give Item Value ...
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? ...
1
vote
2answers
73 views

Simplify boolean logic

Simple question, can the following logic A && !(A && B) be simplified into this? A && !B If not can it be simplified at all?
0
votes
4answers
134 views

How to reduce logic expressions?

{ ans += (a[i] > a[j]) != (b[i] > b[j]); //ans += ((a[i] > a[j]) && (b[j] > b[i])) || ((a[j] > a[i]) && (b[i] > b[j])); } What you see above is a snippet I took ...
7
votes
1answer
205 views

Is MySQL logic evaluation lazy/short-circuiting in JOIN clause?

Take the following expression: FALSE AND (expression) Will MySQL evaluate the expression or just move on as soon as it sees FALSE? Some background context-- I wanted to speed up a query by doing: ...
1
vote
1answer
51 views

Tools to optimize logic?

I am writing a processor simulator in java, and the control signals are beyond cumbersome. Are there any tools that generates logics as below: binary logic(s): input[0]: 00001 input[1]: 00000 ...
1
vote
1answer
373 views

Complex SOLR query including NOT and OR

I have some fairly complex requirements for a SOLR search that I need to execute against my database of tagged content. I need to first filter the database to those results matching my filter tags. ...
0
votes
1answer
761 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 ...
1
vote
2answers
228 views

Kripke semantics: learning software available?

I am stuck on Kripke semantics, and wonder if there is educational software through which I can test equivalence of statements etc, since Im starting to think its easier to learn by example (even if ...
0
votes
1answer
51 views

A hash function for SAT preprocessing

During preprocessing of a SAT instance consisting of a clause database, every variable needs to be assigned a word. A hash function returns for each variable a 32-bit word only consisting of 0’s ...
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
491 views

Why isn't this y/n loop working?

So I'm making a look that asks if you would like to level up your character. If you say yes it asks you again until you're level 20 (the D&D level cap) or until you say no. I type y then hit ...
2
votes
2answers
323 views

Besides AND/OR/NOT, what's the point of the other logical operators in programming?

I've been programming nearly all of my life (around 20+ years), and I don't think I can remember a single time when I was looking at a if-statement and think "Hmmm, this would be a good time to use ...
2
votes
2answers
171 views

How can I organize better these two consecutive IF statements?

I would like to organize better the following two if statements: if(A || B){ do stuff... } if(A && ! B){ do other stuff... } Is there a better way? EDIT: ! before B on second ...
9
votes
2answers
272 views

Prolog Beginner - Is This a Bad Idea?

The application I'm working on is a "configurator" of sorts. It's written in C# and I even wrote a rules engine to go with it. The idea is that there are a bunch of propositional logic statements, and ...
0
votes
1answer
102 views

tool for testing logic expressions

can anyone recommend software (preferably for mac) or a web based tool, that can be used to evaluate logic expressions? For example I would like to be able to quickly test whether two expressions ...
5
votes
8answers
349 views

Not able to figure out the logical error in C program

A program that prints its input one word per line. int main() { int c; while ((c=getchar()) != EOF) { if (c== ' ' || c== '\n' ||c == '\t') putchar('\n'); ...
0
votes
1answer
449 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
1answer
418 views

Digital Logic Puzzle, “2 out of 10 voting” logic

I am tring to implement kind of "2 out of 10 voting" logic. This logic simply says if atleast 2 inputs out of given 10 inputs are "ON" then only output must be "ON". So I have 10 digital inputs ...
0
votes
2answers
87 views

Proving the Associativity of OR

I need help proving the following: (a ∨ b) ∨ c = a ∨ (b ∨ c) I don't want the answer... just a hint that will help me understand the process of proving this. Thank you.
9
votes
4answers
182 views

Why does [].all?{|a| a.include?('_')} return true?

Why does [].all?{|a| a.include?('_')} return true?
-1
votes
1answer
784 views

LED Quix Buzzer Circuit With Logic Gates [closed]

I want to Make Simple a Quiz Buzzer Circuit With LED. e.g. I need LED instead of Buzzer. I don't need any reset Switch. I want to maximize the Use of Logic Gates in this Circuit. and Obviously no ...
3
votes
3answers
245 views

Can I simplify this conditional statement, which uses the logical negation operator?

Sorry if this is a "Logical Operators 101" kind of question. I've been staring at my screen for 15 minutes trying to wrap my head around it, but I'm stuck. Is there a more concise/elegant way to ...
0
votes
1answer
286 views

Logic Circuits & Shift Registers?

Could anyone point me to a logical diagram of, or show me how to create, a Parrallel In/Serial Out shift register that uses J-K Flip flops? I've found diagrams that use D types, but no J-K's. Any help ...
7
votes
9answers
1k views

P implies Q, how to read in english

how to read P implies Q in classical logic? example : Distributivity: Ka(X->Y) -> (KaX -> KaY) This is modal logic which uses classical logic rules. KaX : a knows the that X is true. ...
5
votes
4answers
2k views

Dynamically evaluating simple boolean logic in Python

I've got some dynamically-generated boolean logic expressions, like: (A or B) and (C or D) A or (A and B) A empty - evaluates to True The placeholders get replaced with booleans. Should I, ...
0
votes
1answer
952 views

Implementing 5-variable function using multiplexers

If I have a 5-variable function (below) and I want to implement it using a multiplexer, how would I do that (using the minimum possible multiplexer): f(A,B,C,D,E) = A + C'D + BD' + B'D + B'CE This ...
3
votes
2answers
2k views

Generating truth tables for logic expressions in Haskell

I completely forgot about my Haskell project which is due in a couple of hours, any help would be appreciated. The first part is an evaluation function that has the following type signature: ...
6
votes
5answers
996 views

Most succinct way to determine if a variable equals a value from a 'list' of values

If I have a variable in C# that needs to be checked to determine if it is equal to one of a set of variables, what is the best way to do this? I'm not looking for a solution that stores the set in an ...