The original question as posed was simply a first degree polynomial (aka a linear function). Easy enough using the techniques described but for higher degrees the TS would need a more involved polynomial root-finding algorithm. (Given that every Nth-degree polynomial contains exactly N roots on the complex plane).Hello again,
I forgot to mention that the 'reverse' formula here is actually referred to as the "inverse" function.
There is a bunch written on calculating inverse functions for more complicated functions but the main idea goes like this.
If you have a function like:
y=x^2
then you want to solve for x rather than y.
For this function it happens to be easy but there are two possibilities:
x=sqrt(y)
x=-sqrt(y)
Some other functions are more difficult such as:
y=x^4+x^3+x^2+x+1
so you'd have to read up on how to handle the more complicated ones.
Sometimes only a numerical solution is possible.