Environment - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Mathematics : Logic : Environment

Logic

  

Environment

  

control level of automatic logical simplification

 

Calling Sequence

Parameters

Description

Levels of Logical Simplification

Examples

Calling Sequence

Environment(level)

Parameters

level

-

(optional) an integer between 0 and 2 inclusive

Description

• 

The Environment command controls the current environment used for automatic simplification of Boolean expressions, that is, which identities and properties are automatically applied to logical expressions.

• 

If level is not provided, the current simplification level is returned.  If it is provided, the simplification level is set to level and NULL is returned.

  

The default level is 0.

Levels of Logical Simplification

  

The following describes the various levels of logical simplification.

• 

0 -- No simplifications.

• 

1 -- Associative properties are applied to remove redundant parentheses; the input is expressed in terms of &and, &or, and &not.

• 

2 -- In addition to level 1 simplifications, the properties (a&anda --> a) and (a&ora --> a) and knowledge of true and false are applied.

Examples

withLogic

&and,&iff,&implies,&nand,&nor,&not,&or,&xor,BooleanSimplify,Canonicalize,Complement,Contradiction,Convert,Dual,Environment,Equivalent,Export,Implies,Import,IncidenceGraph,Normalize,Parity,PrimalGraph,Random,Satisfiable,Satisfy,SymmetryGroup,Tautology,TruthTable,Tseitin

(1)

Environment0

a&andb&anda

aba

(2)

a&iffa

aa

(3)

Environment1

a&andb&anda

aab

(4)

a&iffa

aa¬a¬a

(5)

Environment2

a&andb&anda

ab

(6)

a&iffa

a¬a

(7)

See Also

Logic