Properties

Properties are true expressions. They are used to prove theorems

Add Unsigned Integer
sum of unsigned integers a and b = sum of a b and carry bit 0

Decrement Unsigned Integer
decrement (list 0 and (list 1 and (empty list))) by 1 = list 1 and (empty list)

Decrement Unsigned Integer (2)
decrement (list 0 and (list 1 and (list x and xs))) by 1 = list 1 and (list 0 and (list x and xs))

Decrement Unsigned Integer (3)
decrement (list 1 and xs) by 1 = list 0 and xs

Multiply x By 0
(list x and xs) multiplied by (list 0 and (empty list)) = list 0 and (empty list)

Multiply 0 By x
(list 0 and (empty list)) multiplied by (list y and ys) = list 0 and (empty list)

Multiply by 1
(list x and xs) multiplied by (list 1 and (empty list)) = list x and xs

Multiply Unsigned Integers
(list x and xs) multiplied by (list y and (list y2 and ys)) = sum of unsigned integers (list x and xs) and ((list x and xs) multiplied by (decrement (list y and (list y2 and ys)) by 1))

Add Bit Output Property
sum of bit x bit 0 and bit 0 = x

Add Bit Carry Property
carry on sum of bit x bit 0 and 0 = 0

Add List Carry Property
sum of x (empty list) and carry bit 0 = x

2 3