Documentation

Boolean Expressions

Boolean expressions are a compact notation for combining boolean operations that go together. A boolean expression results in a boolean result.

The operations that can be combined are the boolean operations.

Order of operations

  1. !
  2. &&
  3. ||

Example

The T-Table of

!a || b && c

is

ExpressionOperation
!a || b && c
t1 || b && ct1 = !a
t1 || t2t2 = b && c
t3t3 = t1 || t2

The T-Form is

t1 = !a
t2 = b && c
t3 = t1 || t2

For more information about T-Tables and T-Forms, see T-Tables.

Contact Information

We would be more than happy to help you. Our opening hours are 9–15 (CET).

[email protected]

📞 (+47) 93 68 22 77

Nils Bays vei 50, 0876 Oslo, Norway

Copyright © 2018-24 progsbase.com by Inductive AS.