I'm trying to write two inverse functions. If we pass to function A value 10 it returns for example 4,86 and if we pass that number to function B it should give us back original 10.
I'm using something like this in function A:
output = sqrt(inputForA / range) * inputForA;
So is it possible to reverse it in function B and calculate inputForA only knowing output and range.