Function x multiplied by y

x multiplied by y

Format:

x multiplied by y

Input:

list x -
list y -

Output:

list - None

Properties that reference this function:

(list x and xs) multiplied by (list 0 and (empty list)) = list 0 and (empty list) (Multiply x By 0)
(list 0 and (empty list)) multiplied by (list y and ys) = list 0 and (empty list) (Multiply 0 By x)
(list x and xs) multiplied by (list 1 and (empty list)) = list x and xs (Multiply by 1)
(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)) (Multiply Unsigned Integers)


Comments

Please log in to add comments