ideas-1.2: Feedback services for intelligent tutoring systems

Safe HaskellSafe-Inferred

Ideas.Text.OpenMath.Dictionary.Logic1

Synopsis

Documentation

logic1List :: [Symbol]Source

List of symbols defined in logic1 dictionary

equivalentSymbol :: SymbolSource

This symbol is used to show that two boolean expressions are logically equivalent, that is have the same boolean value for any inputs.

notSymbol :: SymbolSource

This symbol represents the logical not function which takes one boolean argument, and returns the opposite boolean value.

andSymbol :: SymbolSource

This symbol represents the logical and function which is an n-ary function taking boolean arguments and returning a boolean value. It is true if all arguments are true or false otherwise.

xorSymbol :: SymbolSource

This symbol represents the logical xor function which is an n-ary function taking boolean arguments and returning a boolean value. It is true if there are an odd number of true arguments or false otherwise.

orSymbol :: SymbolSource

This symbol represents the logical or function which is an n-ary function taking boolean arguments and returning a boolean value. It is true if any of the arguments are true or false otherwise.

impliesSymbol :: SymbolSource

This symbol represents the logical implies function which takes two boolean expressions as arguments. It evaluates to false if the first argument is true and the second argument is false, otherwise it evaluates to true.

trueSymbol :: SymbolSource

This symbol represents the boolean value true.

falseSymbol :: SymbolSource

This symbol represents the boolean value false.