Introduction

HINT: Print these instructions and step through them with the program before you.

The program layout has a large, workspace, a menu bar, and a toolbar on the right with six buttons.

Connectives Used by program:

For conjunction:
(A&B)
For disjunction:
(A+B)
For implication:
(A>B)
For equivalence:
(A=B)
For negation:
~A

Truth Functions

Truth Tables for Arguments:

Indirect Truth Table For Arguments:

Using the built in exercises:

TRUTH TABLES

INPUT

OUTPUT

 

and

or

if...then...

if...and only if...

P.....Q

P&Q

P+Q

P>Q

P=Q

T.....T

T

T

T

T

T.....F

F

T

F

F

F.....T

F

T

T

F

F.....F

F

F

T

T

NEGATION

INPUT

OUTPUT

P

~P

T

F

F

T


Return to top of document.