Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
4k views

How can I build a Truth Table Generator?

I'm looking to write a Truth Table Generator as a personal project. There are several web-based online ones here and here. (Example screenshot of an existing Truth Table Generator) I have the ...
7
votes
7answers
2k views

Truth tables in code? How to structure state machine?

I have a (somewhat) large truth table / state machine that I need to implement in my code (embedded C). I anticipate the behavior specification of this state machine to change in the future, and so ...
3
votes
2answers
831 views

Prolog First Order Logic - Printing a Truth Table

I have to write program that prints a truth table of expressions. So, I wrote the following function: bool(true). bool(fail). tableBody(A,B,E) :- bool(A), bool(B) , write(A) , ...
2
votes
1answer
101 views

Digital Logic - Karnaugh Map

The initial problem starts like this. There are 6 states. At each state when w=1 move to the next state, when w=0 then stay at the current state. At each state display a number using a standard 7 led ...
2
votes
3answers
227 views

Generating code from truth tables!

As odd as this question sounds, i've actually got a set of vairables and a few conditions in which they produce a valid state. i will of course write out the code that tests them based on my ...
2
votes
4answers
69 views

How to let user enter a JavaScript function securely?

What I'm doing is creating a truth table generator. Using a function provided by the user (e.g. a && b || c), I'm trying to make JavaScript display all combinations of a, b and c with the ...
2
votes
1answer
574 views

Boolean Logic and Truth Tables Explanation

I'm needing to create a truth table, and I really need to find a resource to explain how it works. I'll give an example of a problem. I have to create a truth table based on this: A*(B+A*B)=A*B So ...
2
votes
2answers
509 views

Algorithmic Approach to generating all combinations based on a large Truth-Table

I apologize if this has been answered elsewhere, but I have yet to find it using my limited algorithmic terminology. ;) My situation is this - I have a variable number of data elements, each of which ...
1
vote
6answers
204 views

Looking for advice on project. Parsing logical expression

I'm looking for some advice on my school project. I am supposed to create a program that takes a logical expression and outputs a truth table for it. The actually creating of the truth table for me is ...
1
vote
2answers
150 views

Access to nth bit without a conditional statement

So I have a bit sequence: 1010 1 is the MSB. My function needs to return an integer of 0 if an odd bit is 0 or a 1 if its a 1. I cannot use any for loops or anything of that nature to see if I ...
1
vote
3answers
186 views

Minimum number of checks to validate a truth table

I have a java program where I want to validate if any of 3 booleans is false. I want to figure out the smallest expression I can write to check against the permutations. if(!(needsWork ...
1
vote
2answers
491 views

Digital Logic - truth tables

I am trying to solve these problems with truth tables using the formulas below. I am having a problem with the NOT to NAND I think i got the first 2 problems correct using: AND is equivalent to NOR, ...
0
votes
4answers
94 views

Is there an easy way to learn truth tables?

I'm following an online tutorial for Ruby and I'm at a point where it's mentioning truth tables and how I need to learn them before proceeding. Is there an easy way to learn them? Do I just need to ...
0
votes
4answers
178 views

How to use bitwise operators to return a 0 or 1

My function takes in a 32 bit int and I need to return a 0 or 1 if that number has a 1 in any even position. I cant use any conditional statements I also can only access 8 bits at a time. Here is an ...
0
votes
1answer
37 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 ...
0
votes
1answer
355 views

how to convert these 7-segment decoder to boolean expression

how to convert these 7-segment decoder to boolean expression?? BCD 7-Segment decoder A B C D a b c d e f g 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 1 1 ...
0
votes
4answers
429 views

Find the Simplified Sum of Products of a Boolean expression

Just having some problems with a simple simplification. I am doing a simplification for the majority decoder with 3 inputs A, B and C. Its output Y assumes 1 if 2 or all 3 inputs assume 1. Y assumes 0 ...
0
votes
3answers
216 views

Truth table to prove an argument true/false

Can someone help me out with truth tables? I would like to create a truth table to prove whether or not this is true.
0
votes
3answers
518 views

Can anybody explain the contrapositive

I'm trying to construct a contrapositive for the following statement: If A is 0 or B is 0, then A*B is 0. Here is my attempt: If A*B is not 0, then A is not 0 or B is not 0. The original statement ...