Algebraic normal form

From HandWiki
Short description: Algebraic normal form, closely related to Zhegalkin polynomial (Q4370006)


In Boolean algebra, the algebraic normal form (ANF), ring sum normal form (RSNF or RNF), Zhegalkin normal form, or Reed–Muller expansion is a way of writing propositional logic formulas in one of three subforms:

  • The entire formula is purely true or false:
    [math]\displaystyle{ 1 }[/math]
    [math]\displaystyle{ 0 }[/math]
  • One or more variables are combined into a term by AND ([math]\displaystyle{ \and }[/math]), then one or more terms are combined by XOR ([math]\displaystyle{ \oplus }[/math]) together into ANF. Negations are not permitted:
[math]\displaystyle{ a \oplus b \oplus \left(a \and b\right) \oplus \left(a \and b \and c\right) }[/math]
  • The previous subform with a purely true term:
[math]\displaystyle{ 1 \oplus a \oplus b \oplus \left(a \and b\right) \oplus \left(a \and b \and c\right) }[/math]

Formulas written in ANF are also known as Zhegalkin polynomials and Positive Polarity (or Parity) Reed–Muller expressions (PPRM).[1]

Common uses

ANF is a canonical form, which means that two logically equivalent formulas will convert to the same ANF, easily showing whether two formulas are equivalent for automated theorem proving. Unlike other normal forms, it can be represented as a simple list of lists of variable names—conjunctive and disjunctive normal forms also require recording whether each variable is negated or not. Negation normal form is unsuitable for determining equivalence, since on negation normal forms, equivalence does not imply equality: a ∨ ¬a is not reduced to the same thing as 1, even though they are logically equivalent.

Putting a formula into ANF also makes it easy to identify linear functions (used, for example, in linear-feedback shift registers): a linear function is one that is a sum of single literals. Properties of nonlinear-feedback shift registers can also be deduced from certain properties of the feedback function in ANF.

Performing operations within algebraic normal form

There are straightforward ways to perform the standard boolean operations on ANF inputs in order to get ANF results.

XOR (logical exclusive disjunction) is performed directly:

(1 ⊕ x) ⊕ (1 ⊕ x ⊕ y)
1 ⊕ x1 ⊕ x ⊕ y
1 ⊕ 1 ⊕ x ⊕ x ⊕ y
y

NOT (logical negation) is XORing 1:[2]

¬(1 ⊕ x ⊕ y)
1 ⊕(1 ⊕ x ⊕ y)
1 ⊕ 1 ⊕ x ⊕ y
x ⊕ y

AND (logical conjunction) is distributed algebraically[3]

(1x)(1 ⊕ x ⊕ y)
1(1 ⊕ x ⊕ y)x(1 ⊕ x ⊕ y)
(1 ⊕ x ⊕ y) ⊕ (x ⊕ x ⊕ xy)
1 ⊕ x ⊕ x ⊕ x ⊕ y ⊕ xy
1 ⊕ x ⊕ y ⊕ xy

OR (logical disjunction) uses either 1 ⊕ (1 ⊕ a)(1 ⊕ b)[4] (easier when both operands have purely true terms) or a ⊕ b ⊕ ab[5] (easier otherwise):

(1 ⊕ x) + (1 ⊕ x ⊕ y)
1 ⊕ (1 ⊕ 1 ⊕ x)(1 ⊕ 1 ⊕ x ⊕ y)
1 ⊕ x(x ⊕ y)
1 ⊕ x ⊕ xy

Converting to algebraic normal form

Each variable in a formula is already in pure ANF, so one only needs to perform the formula's boolean operations as shown above to get the entire formula into ANF. For example:

x + (y ⋅ ¬z)
x + (y(1 ⊕ z))
x + (y ⊕ yz)
x ⊕ (y ⊕ yz) ⊕ x(y ⊕ yz)
x ⊕ y ⊕ xy ⊕ yz ⊕ xyz

Formal representation

ANF is sometimes described in an equivalent way:

[math]\displaystyle{ f(x_1, x_2, \ldots, x_n) = \! }[/math] [math]\displaystyle{ a_0 \oplus \! }[/math]
[math]\displaystyle{ a_1x_1 \oplus a_2x_2 \oplus \cdots \oplus a_nx_n \oplus \! }[/math]
[math]\displaystyle{ a_{1,2}x_1x_2 \oplus \cdots \oplus a_{n-1,n}x_{n-1}x_n \oplus \! }[/math]
[math]\displaystyle{ \cdots \oplus \! }[/math]
[math]\displaystyle{ a_{1,2,\ldots,n}x_1x_2\ldots x_n \! }[/math]
where [math]\displaystyle{ a_0, a_1, \ldots, a_{1,2,\ldots,n} \in \{0,1\}^* }[/math] fully describes [math]\displaystyle{ f }[/math].

Recursively deriving multiargument Boolean functions

There are only four functions with one argument:

  • [math]\displaystyle{ f(x)=0 }[/math]
  • [math]\displaystyle{ f(x)=1 }[/math]
  • [math]\displaystyle{ f(x)=x }[/math]
  • [math]\displaystyle{ f(x)=1 \oplus x }[/math]

To represent a function with multiple arguments one can use the following equality:

[math]\displaystyle{ f(x_1,x_2,\ldots,x_n) = g(x_2,\ldots,x_n) \oplus x_1 h(x_2,\ldots,x_n) }[/math], where
  • [math]\displaystyle{ g(x_2,\ldots,x_n) = f(0,x_2,\ldots,x_n) }[/math]
  • [math]\displaystyle{ h(x_2,\ldots,x_n) = f(0,x_2,\ldots,x_n) \oplus f(1,x_2,\ldots,x_n) }[/math]

Indeed,

  • if [math]\displaystyle{ x_1=0 }[/math] then [math]\displaystyle{ x_1 h = 0 }[/math] and so [math]\displaystyle{ f(0,\ldots) = f(0,\ldots) }[/math]
  • if [math]\displaystyle{ x_1=1 }[/math] then [math]\displaystyle{ x_1 h = h }[/math] and so [math]\displaystyle{ f(1,\ldots) = f(0,\ldots) \oplus f(0,\ldots) \oplus f(1,\ldots) }[/math]

Since both [math]\displaystyle{ g }[/math] and [math]\displaystyle{ h }[/math] have fewer arguments than [math]\displaystyle{ f }[/math] it follows that using this process recursively we will finish with functions with one variable. For example, let us construct ANF of [math]\displaystyle{ f(x,y)= x \lor y }[/math] (logical or):

  • [math]\displaystyle{ f(x,y) = f(0,y) \oplus x(f(0,y) \oplus f(1,y)) }[/math]
  • since [math]\displaystyle{ f(0,y)=0 \lor y = y }[/math] and [math]\displaystyle{ f(1,y)=1 \lor y = 1 }[/math]
  • it follows that [math]\displaystyle{ f(x,y) = y \oplus x (y \oplus 1) }[/math]
  • by distribution, we get the final ANF: [math]\displaystyle{ f(x,y) = y \oplus x y \oplus x = x \oplus y \oplus x y }[/math]

See also

References

Further reading

ru:Полином Жегалкина