Function INVERSE

One binary relation is the inverse of another if they are equivalent when their arguments are swapped.
Arity: 2
Domain: Binary-relation
Range: Binary-relation
Axioms:
(<=> (Holds ?Binary-Relation ?X ?Y)
     (Holds (Inverse ?Binary-Relation) ?Y ?X))

(=> (Inverse ?Binary-Relation ?Inverse-Relation)
    (And (Binary-Relation ?Binary-Relation)
         (= ?Inverse-Relation
            (Setofall (Listof ?Y ?X) (Holds ?Binary-Relation ?X ?Y)))))

Notes: