diff --git a/acme-operators.cabal b/acme-operators.cabal
--- a/acme-operators.cabal
+++ b/acme-operators.cabal
@@ -3,7 +3,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           acme-operators
-version:        0.1.0.0
+version:        0.2.0.0
 synopsis:       Operators of base, all in one place!
 description:    Have you ever been wondering about some magic lookin operator. Here are all operators in base package. Not so many.
 category:       Documentation
diff --git a/src/Acme/Operators/Base.hs b/src/Acme/Operators/Base.hs
--- a/src/Acme/Operators/Base.hs
+++ b/src/Acme/Operators/Base.hs
@@ -77,6 +77,15 @@
   (++),
   (!!),
   (\\),
+  -- * Numeric
+  (+),
+  (*),
+  (-),
+  (/),
+  -- ** Expontentials
+  (^),
+  (^^),
+  (**),
   -- * Type level trickery
   -- ** Data.Type.Equality
   (:~:),
@@ -109,6 +118,8 @@
   x <- m
   let z = f x
   z `seq` return z
+
+infixl 1 &
 
 -- | '&' is a reverse application operator.  This provides notational
 -- convenience.  Its precedence is one higher than that of the forward
