truthtable Questions

9

Solved

My question is simple: "how to build a dynamic growing truth table in python in an elegant way?" for n=3 for p in False, True: for q in False, True: for r in False, True: print '|{0} | {1} | ...
Oriflamme asked 13/6, 2011 at 21:12

5

Solved

I need to make a formula that gives you the truth table for a variable number of columns. Example
Bellaude asked 16/12, 2015 at 14:33

8

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...
Cusco asked 23/5, 2012 at 15:28

5

Solved

Table true/false for C Language I have heard of a table true false for C Language for and && or || is kind of the mathematics one for which they say if true+true=true and false+true=false I...
Donetta asked 28/9, 2011 at 13:17

3

Solved

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 &...
Communistic asked 26/11, 2012 at 13:31

2

Solved

I have many truth-tables of many variables (7 or more) and I use a tool (eg logic friday 1) to simplify the logic formula. I could do that by hand but that is much too error prone. These formula I ...
Surveying asked 28/11, 2017 at 17:28

3

Solved

Imagine a Person class with a boolean flag indicating whether or not the person is employable - set to false by default. public class Person{ boolean employable = false; ... } Now imagine havi...
Nickinickie asked 5/11, 2015 at 5:27

4

Solved

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(); else if (...
Janiuszck asked 11/11, 2012 at 12:11

7

Solved

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 ...
Rhythmandblues asked 15/2, 2012 at 10:53

3

Solved

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 lik...
Greenhorn asked 12/12, 2011 at 17:11

5

Solved

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 f...
Magnetomotive asked 5/7, 2009 at 21:40

2

Solved

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) , write(' '), wr...
Quadrivial asked 20/1, 2010 at 15:30

7

Solved

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...
Protagonist asked 2/3, 2009 at 16:43
1

© 2022 - 2024 — McMap. All rights reserved.