Induction on two omaps, applying tail to both.
Function: omap-induction2
(defun omap-induction2 (map1 map2) (cond ((emptyp map1) nil) ((emptyp map2) nil) (t (omap-induction2 (tail map1) (tail map2)))))