I'm having a trouble with my math:
Assume that we have a function: F(x,y) = P; And my question is: what would be the most efficient way of counting up suitable (x,y) plots for this function ? It means that I don't need the coordinates themself, but I need a number of them. P is in a range: [0 ; 10^14]. "x" and "y" are integers. Is it solved using bruteforce or there are some advanced tricks(math / programming language(C,C++)) to solve this fast enough ?
To be more concrete, the function is: x*y - ((x+y)/2) + 1.
Thank you very much for your answers!
(x - 1/2) * (y - 1/2) == P - 3/4, so even if you do need to brute-force, you only have to do so in one of the variables. Obviously, though, you can only truly brute force over the limited range of an integer type in your chosen language, not over all integers. – Steve Jessop Jun 3 '11 at 9:08