I've been trying to think of a better solution for this problem, so far it looks like I'm stuck running an arbitrarily long brute-force loop (or having to keep track of various 'statistics' on the variables over time, which doesn't help me much in a few cases), which I'm trying to find a way around.
These are the three key variables as initiated by a program;
A = 0.985, B = 0.0018, and C = 0.
For each moment in time I will perform the two following calculations:
C = C * A;
C = C + B;
The question is 'what value will C be where the decrement of A will cancel out the increment of B.'
For example, the solution to the above is: 0.1199999967, which occurs on the 1,142 iteration.
(0.1199999967 * 0.985) + 0.0018 = 0.1199999967
I want to find the point where C will stop increasing without having to employ brute-force.
Thanks,


LinkBack URL
About LinkBacks
