A truth table is a mathematical table used in logic—specifically in connection with Boolean algebra, boolean functions, and propositional calculus—to compute the functional values of logical expressions on each of their functional arguments, that is, on each combination of values taken by their ...
0
votes
0answers
41 views
state machine implementation of a simple sequential odd parity generator/checker for a 7 bit memory
I have been able to create an AND-OR 3 bit parity generator/checker before. But im not sure how to do the 7bit. I think I have to use MUX. How would I go about designing it? Do I need a truth table? ...
0
votes
1answer
100 views
Create Reduced Ordered Binary Decision Diagram (ROBDD) from truth table
Is there a software package (preferable an application, not library) that creates Reduced Ordered Binary Decision Diagrams (ROBDDs) from a given truth table (in some text format)?
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
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
2answers
44 views
Generating Binary Inputs in C
Essentially, I have a program that has eight variables. I'm attempting to check every combination of truth values for these eight variables, and so I need a truth table using 0s and 1s that ...
-1
votes
1answer
379 views
Shunting-Yard Algorithm with truth tables in Java
I'm working on a truth table generator for one of my assignments in Discrete math.. I have to implement the shunting-yard algorithm, and I'm completely lost doing so. My problem, is implementing the ...
1
vote
4answers
230 views
Truth table array
I'm stuck on how to begin coding this.
I want to be able to do the following. It's a classic flipping the coin problem
If I flip twice the out comes are:
T T
T F
F T
F F
I want to be able to ...
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
5answers
35 views
Why is a list containing objects False when value tested?
I would expect an empty list to value test as False, but I'm a bit confused why a reference for a list containing an object reports as False also when value tested as in the following example:
...
6
votes
2answers
42 views
Name for the logical operator A & (~B)
Is there a name for logical AND with the negation (~) of the second variable, i.e:
A & (~B)
The truth table for such operation is:
0 & (~0) = 0
0 & (~1) = 0
1 & (~0) = 1
1 & ...
1
vote
3answers
364 views
C : 0 & 1 combinations using recursion
I want to list combinations of o & 1 recursively using c depending on variables number (number)
the output I want is
000
001
010
011
100
101
110
111
I've tried many algorithms the last one is ...
10
votes
4answers
310 views
How can I avoid an impossible boolean state in c#?
Consider this function, which you can think of as a truth table:
public Foo doSomething(bool a, bool b) {
if ( a && b) return doAB();
else if ( a && !b) return doA();
...
0
votes
1answer
34 views
quasi truth tablet function
I'm trying to get the values of a table given the row, column, and the number size of each column variable.
For example:
getValue(row = 5, column = 1, column_variable_sizes = [3,2])
would return
...
0
votes
0answers
136 views
Generating Input Binary Combination Dynamically
I am currently working on a application where there is a requirement to generate binary combination of input signals in a truth table.
The signal can be either '0' , '1' or 'X' (don't care). The ...
1
vote
0answers
238 views
Opensource Clone for truth table generator similar to turner.faculty.swau.edu [closed]
i am looking for truth table generator in php language i found on internet here
but i need like this
http://turner.faculty.swau.edu/mathematics/materialslibrary/truth/
if some one knows that php ...
0
votes
2answers
324 views
Check the symmetry of a grid/truth table
t t f f f f t t
t t f f f f t t
f f t t t t f f
f f t t t t f f
t t f f f f t t
t t f f f f t t
f f t t t t f f
f f t t t t f f
Is it possible to determine the symmetry of the above 8x8 using ...
1
vote
1answer
255 views
Truth Tables in Javascript
I'm currently implementing a Master Save behaviour for a master layout that holds 7 tabs.
Essentially, when the Save button on the master layout is clicked, I want it so that each tab saves itself ...
1
vote
5answers
437 views
Deriving a Boolean function from a table describing the output d of a Boolean function
I have been presented with the following question:
The following table describes the output d of a Boolean fun with three input values a, b, and c.
a b c | d
----------+----
0 0 0 | 1
...
0
votes
2answers
279 views
Truth Table for an expression( as string )
I want to compute the truth table for an expression(valid logical expression) input by the user as a String. Can anybody post an existing solution to this or guide me in doing so??
I am thinking of ...
1
vote
4answers
2k views
Generating truth tables in Java
I'm trying to print some truth tables as part of a school assignment. How can I generate a dynamic size truth table in Java?
So that printTruthTable(1) prints:
0
1
printTruthTable(3) prints:
0 0 ...
0
votes
5answers
238 views
Python: How to chain boolean tests to get False as soon as it gets the first False
After having a lot of trouble trying to reduce nested ifs (and a script that stopped working), I realized perhaps I am having the wrong idea of what and how boolean stuff works in python.
I had this ...
0
votes
1answer
506 views
4 bit binary number multiplier by 3 (mod 16)
I have a question in a past paper which asks to design as a minimised sum of products, and using only NAND gates, a circuit which takes 4 bit binary input and multiplies that number by 3 (mod 16)
...
6
votes
7answers
469 views
Outputting a truth table in PHP
I ran across this truth table generator site, and tried to mimic it in PHP (i realize the source code is available, but i know 0 perl).
Now my question is not about evaluating the expression, but how ...
0
votes
2answers
291 views
Creating Truth Table with Python IndexError:list out of range
Trying to make a Truth table through Python using itertools but keep getting same error
Heres my code so far
import sys
import itertools
def gen_constants(numvar):
l = []
for i in ...
0
votes
4answers
1k 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 ...
2
votes
2answers
286 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
6answers
1k 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 ...
0
votes
4answers
548 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 ...
2
votes
2answers
598 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 ...
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 ...
0
votes
1answer
1k 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
3k 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 ...
2
votes
3answers
484 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
121 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 ...
0
votes
3answers
521 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.
1
vote
3answers
269 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
923 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, ...
2
votes
1answer
900 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 ...
4
votes
2answers
2k 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
2answers
765 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 ...
10
votes
5answers
6k 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 ...
0
votes
3answers
639 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 ...
8
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 ...
