In pure functional languages like Haskell, is there an algorithm to get the inverse of a function, (edit) when it is bijective? And is there a specific way to program your function so it is?
|
In some cases, yes! There's a beautiful paper called Bidirectionalization for Free! which discusses a few cases -- when your function is sufficiently polymorphic -- where it is possible, completely automatically to derive an inverse function. (It also discusses what makes the problem hard when the functions are not polymorphic.) What you get out in the case your function is invertible is the inverse (with a spurious input); in other cases, you get a function which tries to "merge" an old input value and a new output value. |
|||||||
|
|
No, it's not possible in general. Proof: consider bijective functions of type
with
Assume we have an inverter
Since this first
Clearly, for all
but to fulfill this,
Up to that point, at least one of the ⬜ |
||||
|
|
|
You can look it up on wikipedia, it's called Reversible Computing. In general you can't do it though and none of the functional languages have that option. For example:
This function does not have an inverse. |
|||||||||||||
|
|
Tasks like this are almost always undecidable. You can have a solution for some specific functions, but not in general. Here, you cannot even recognize which functions have an inverse. Quoting Barendregt, H. P. The Lambda Calculus: Its Syntax and Semantics. North Holland, Amsterdam (1984):
Let's take A to be the set of lambda terms that represent invertible functions and B the rest. Both are non-empty and closed under beta equality. So it's not possible to decide whether a function is invertible or not. (This applies to the untyped lambda calculus. TBH I don't know if the argument can be directly adapted to a typed lambda calculus when we know the type of a function that we want to invert. But I'm pretty sure it will be similar.) |
|||
|
|
|
Not in most functional languages, but in logic programming or relational programming, most functions you define are in fact not functions but "relations", and these can be used in both directions. See for example prolog or kanren. |
|||||
|
|
If you can enumerate the domain of the function and can compare elements of the range for equality, you can - in a rather straightforward way. By enumerate I mean having a list of all the elements available. I'll stick to Haskell, since I don't know Ocaml (or even how to capitalise it properly ;-) What you want to do is run through the elements of the domain and see if they're equal to the element of the range you're trying to invert, and take the first one that works:
Since you've stated that However, The Control.Monad.Omega package can help you run through lists of tuples etcetera in a good way; I'm sure there's more packages like that - but I don't know them. Of course, this approach is rather low-brow and brute-force, not to mention ugly and inefficient! So I'll end with a few remarks on the last part of your question, on how to 'write' bijections. The type system of Haskell isn't up to proving that a function is a bijection - you really want something like Agda for that - but it is willing to trust you. (Warning: untested code follows) So can you define a datatype of
along with as many constants (where you can say 'I know they're bijections!') as you like, such as:
and a couple of smart combinators, such as:
I think you could then do After all, if you know a function is a bijection, you'll hopefully have a proof-sketch of that fact in your head, which the Curry-Howard isomorphism should be able to turn into a program :-) |
|||
|
|
|
Not every function has an inverse. If you limit the discussion to one-to-one functions, the ability to invert an arbitrary function grants the ability to crack any cryptosystem. We kind of have to hope this isn't feasible, even in theory! |
|||||||||||||
|
|
I've recently been dealing with issues like this, and no, I'd say that (a) it's not difficult in many case, but (b) it's not efficient at all. Basically, suppose you have
If Types that have a
Same goes for disjunctions of
The fact that we can do this both for |
||||
|
|
|
No, not all functions even have inverses. For instance, what would the inverse of this function be?
|
|||
|
|
f x = 1, the inverse of 1 is a set of integers and the inverse of anything else is an empty set. Regardless of what some answers say, the function not being bijective is not the biggest problem. – Karolis Juodelė Nov 15 '12 at 19:12fis a functiongsuch thatf . g = idandg . f = id. Your candidate doesn't even typecheck in that case. – Ben Millwood Nov 16 '12 at 0:32f x = 1has no inverse take a very narrow approach and ignore the whole complexity of the problem. – Karolis Juodelė Nov 16 '12 at 6:17