HCHTech
Well-Known Member
- Reaction score
- 4,178
- Location
- Pittsburgh, PA - USA
I spent the first 22 years of my working career in actuarial science, so my brain is broken a bit to the point where I like it when I run into math problems in my encore career of computer repair.
I had a customer problem I described here the other day where I had to run a ping command over and over again with different MTU guesses until I zeroed in on the correct answer. That made me think of this:
So....when you have a function you have to iterate with an initial variable that you have to guess and then change with the iteration, there are a couple of ways to do this.
Let's say your initial guess ends up being too low of a number. How do you figure out what the next guess should be? You can always brute-force the calculation and just increase your guess by 1 or 10 or some other increment you decide, run the calculation again, determine whether the guess was too high or too low and repeat until you find the right answer.
There is a more efficient way to do this, however. If your guess is too low, your second guess should be a number that you think will be too high. THIS sets the two endpoints of the guessing continuum. After you know the end points, you calculate each future guess as 1/2 way between the last guess and the endpoint. As you proceed, each new guess sets a new endpoint. This way, you reach the answer in fewer guesses (statistically, that is - unless you are a really good guesser!) This is called Iteration by Bifurcation.
There is an even more efficient take on this process where instead of guessing 1/2 way between the current guess and the endpoint, you find a way to estimate how far you are off and guess that percentage of the way between your last guess and the endpoint. I'm not sure what that's called, but maybe some of the programmers here have heard of it. Maybe geometric bifurcation?
Mostly, this whole concept is only important when you are programming an iterative function and you know there will be potentially thousands of iterations. In that case, finding a way to guess efficiently makes your program run faster.
I had a customer problem I described here the other day where I had to run a ping command over and over again with different MTU guesses until I zeroed in on the correct answer. That made me think of this:
So....when you have a function you have to iterate with an initial variable that you have to guess and then change with the iteration, there are a couple of ways to do this.
Let's say your initial guess ends up being too low of a number. How do you figure out what the next guess should be? You can always brute-force the calculation and just increase your guess by 1 or 10 or some other increment you decide, run the calculation again, determine whether the guess was too high or too low and repeat until you find the right answer.
There is a more efficient way to do this, however. If your guess is too low, your second guess should be a number that you think will be too high. THIS sets the two endpoints of the guessing continuum. After you know the end points, you calculate each future guess as 1/2 way between the last guess and the endpoint. As you proceed, each new guess sets a new endpoint. This way, you reach the answer in fewer guesses (statistically, that is - unless you are a really good guesser!) This is called Iteration by Bifurcation.
There is an even more efficient take on this process where instead of guessing 1/2 way between the current guess and the endpoint, you find a way to estimate how far you are off and guess that percentage of the way between your last guess and the endpoint. I'm not sure what that's called, but maybe some of the programmers here have heard of it. Maybe geometric bifurcation?
Mostly, this whole concept is only important when you are programming an iterative function and you know there will be potentially thousands of iterations. In that case, finding a way to guess efficiently makes your program run faster.