The result you are looking for derives from Reynolds' parametricity, and was most famously shown by Wadler in theorems for free.
The most elegant way of proving basic parametricity results I have seen use the notion of a "Singleton Type". Essentially, given any ADT
data Nat = Zero | Succ Nat
there exists an indexed family (also known as a GADT)
data SNat n where
SZero :: SNat Zero
SSucc :: SNat n -> SNat (Succ n)
and we can give a semantics to our language by "erasing" all the types to an untyped language such that Nat and SNat erase to the same thing. Then, by the typing rules of the language
id (x :: SNat n) :: SNat n
SNat n has only one inhabitant (its singleton), since the semantics is given by erasure, functions can not use the type of their arguments, so the only value returnable from id on any Nat is the number you gave it. This basic argument can be extended to prove most of the parametricity results and was used by Karl Crary in A Simple Proof Technique for Parametricity Results although the presentation I have here is inspired by Stone and Harper
idis the only 'interesting' or 'total' function of typea->a.undefinedcan be of any type in Haskell, but it's not a useful function. You might also be interested in Djinn, a program that generates functions from a type when possible, lambda-the-ultimate.org/node/1178 – John L Nov 27 '12 at 0:39f ? (a,a,b) -> awill find both answers). If the list is exhaustive (I don't know if it is), then determining uniqueness is trivial. – John L Nov 27 '12 at 0:52f :: Float -> Float– amindfv Nov 27 '12 at 2:45