vote up -1 vote down star
3

I want to write a C++ program to find the values of a, b, c that satisfy following equation. Only clue available for me at this time is, there are 5 set of known solutions for this problem and {0, 0, 0}, {0, 0, 1} are 2 of them.

I know there are several algorithms to solve this. However execution time of algorithm is the challenge to meet.

987654321 * a + 123456789 * b + c = (a + b + c)³

Can somebody suggest a brilliant algorithm or C/C++ program to solve this problem? While you suggesting, please add the approximate execution time if possible.

flag

50% accept rate
20  
You need to add what research you've done and the approaches you've tried or have analyzed. Otherwise this looks to me like we'll be doing your homework for you. – Sid Farkus Oct 7 at 16:56
14  
This sure sounds like a homework problem. Given that there are only 5 known solutions, this is not exactly trivial, and "suggesting" a brilliant algorithm or program to solve it would be doing all of the work. – Bears will eat you Oct 7 at 16:57
17  
This wouldn't have anything to do with crazyengineers.com/forum/… now would it? – Stu Oct 7 at 16:57
2  
Are there restrictions on the type of a, b and c? because {0, 0, -1} is also a solution but the commentary at crazyengineers.com makes it seem like that was not intended as a solution. – jmucchiello Oct 7 at 17:04
23  
I have discovered a truly marvellous proof of this, which this comment is too short to contain. – Kibbee Oct 7 at 18:06
show 9 more comments

closed as not a real question by Ngu Soon Hui, silky, Kirill V. Lyadvinsky, Mitch Wheat, Rob Oct 8 at 12:18

12 Answers

vote up 14 vote down

Take s=a+b+c, then the equation becomes s^3-s=987654320.a+123456788.b. The gcd of the two constants is 4. Let p=987654320/4=246913580 and q=123456788/4=30864197. The equation is then:

p = 246913580
q = 30864197
s^3-s = 4(p.a+q.b).

For each value of s such that s^3-s is a multiple of 4 (i.e. s%4!=2) you have an infinity of solutions, and no solutions when s%4=2.

You just need to find Bezout coefficients; a0 and b0 such that p.a0-q.b0=1:

a0 = 23148148
b0 = 185185187

Then for a given s, compute h=(s^3-s)/4, solutions are:

a = h.a0 + i.q
b = -h.b0 - i.p
c = s - (a+b) = s + 162037039.h + 216049383.i

Example: s=999, gives all solutions:

h = 249250500
a = 584231 + 30864197.i
b = -4673840 - 246913580.i
c = 4090608 + 216049383.i

Here is a list of all "small" solutions, including the 5 solutions with non negative values:

                               0, 0, 0
                               0, 0, 1
                            21, -168, 154
                            45, -360, 324
                          210, -1680, 1485
                          255, -2040, 1801
                          306, -2448, 2159
                          759, -6072, 5336
                          975, -7800, 6850
                         1860, -14880, 13051
                         2046, -16368, 14354
                         2244, -17952, 15741
                         3705, -29640, 25974
                         4305, -34440, 30176
                         6001, -46630, 46170
                           450, 4500, 5050
                         9492, -38427, 45603
                         7854, -23268, 32381
                          7350, 6000, 6650
                        16450, -30310, 37071
                          27150, 1500, 1350
                        29250, -11760, 12671
                        28542, 34110, -30772
                         40971, -13350, 6238
                        66300, -12000, -14300
link|flag
1  
+1 This is the best (and true) solution! – Alexey Malistov Oct 8 at 11:05
1  
This is the most brilliant solution in this thread. I would be more happy with an algorithm/program what I exactly need than a set of solutions. I have already got something like that. Anyway congratulations. Excellent effort. – Vadakkumpadath Oct 8 at 12:05
vote up 6 vote down

This problem is an Diophantine equation. The tenth of Hilbert's twenty-three problems is finding an algorithm that decides if a Diophantine equation has a solution. In 1970 Yuri Matiyasevich proved that this is in general an undecidable problem. So this problem might be very hard to solve...

link|flag
It is known that no such algorithm exists in the general case. But it is possible that there is an algorithm for OP's case. – Alexey Malistov Oct 8 at 10:41
1  
That is why I say "it might be very hard". – Daniel Brückner Oct 8 at 11:00
1  
When I sad "it is possible", I did not see true solution below. Look there. There is exist the good solution. – Alexey Malistov Oct 8 at 11:07
vote up 6 vote down

Here you go:

#include <iostream>
int main()
{
    std::cout <<
        "(0, 0, 0)\n"
        "(0, 0, 1)\n"
        "(450, 4500, 5050)\n"
        "(7350, 6000, 6650)\n"
        "(27150, 1500, 1350)" << std::endl;
}

It was difficult to measure the execution time precisely. I'll leave it up to you.

link|flag
What about the 6th solution? – Daniel Brückner Oct 7 at 19:11
3  
Daniel, only 5 results were requested. By leaving other solutions (and there are more than 6) out, I've significantly decreased the amount of time the program needs to complete. This optimization is critical, since "execution time of algorithm is the challenge to meet". – avakar Oct 7 at 19:29
The question is to find the solutions of the equation, not only the first five ... ;) – Daniel Brückner Oct 7 at 19:52
vote up 4 vote down

just a hint, not a solution: starting with

987654321 * a + 123456789 * b + c = (a + b + c)³

and

(a + b + c)³ = a³ + b³ + c³ + 3a²b + 3a²c + 3b²a + 3b²c + 3c²a + 3c²b + 6abc

if I did not mess up the pluses and minuses, this is equivalent to

1 * c³ + (3a + 3b) * c² + (3a² + 3b² + 6ab - 1) * c + (a³ + b³ + 3a²b + 3b²a - 987654321 * a - 123456789 * b) = 0

and is thus a cubic function

A * x3 + B * x2 + C * x + D = 0

that can be solved for integer values of x (= original c)

link|flag
One of the three solutions of this equation is ... (-(sqrt(3)*%i)/2-1/2)*(sqrt(102880654897119372*b^2+1646090505020576160*a*b+6584362126748971200*a^2-1)/3^(3/2)+61728394*b+493827160*a)^(1/3)+((sqrt(3)*%i)/2-1/2)/(3*(sqrt(102880654897119372*b^2+1646090505020576160*a*b+6584362126748971200*a^2-1)/3^(3/2)+61728394*b+493827160*a)^(1/3))-(3*b+3*a)/3 ... hmmmm, okay ... you have still to check if this is an integer for all possible a and b ... and don't forget the other two solutions ... – Daniel Brückner Oct 7 at 18:54
Well, there is only one solution that doesn't involve i: c = (sqrt((26666666640 a+3333333276 b)^2-108)+26666666640 a+3333333276 b)^(1/3)/(3 2^(1/3))+2^(1/3)/(sqrt((26666666640 a+3333333276 b)^2-108)+26666666640 a+3333333276 b)^(1/3)-a-b – Eclipse Oct 7 at 19:00
I admit I didn't look at the equation longer then a few seconds and didn't try to figure out if the imaginary parts can cancel out or not. So I am not sure but I assume the imaginary parts may cancel out. – Daniel Brückner Oct 7 at 19:28
vote up 3 vote down

If you're looking to speed up your brute-force search, then the first obvious step is to search across a and b, but instead of looping for c you solve the cubic equation:

c + n = (c + m)^3

where m = a + b, and n = 987654321 * a + 123456789 * b. The smart way to do this is probably to use a library, for instance call into Mathematica, but failing that it can be solved using the formula and some polynomial division, or with Newton-Raphson approximation, or probably some other kind of approximation. The formula requires complex numbers, the approximation only requires floats.

The cubic necessarily has 1-3 solutions. Allowing for floating-point errors, look if any of them is close to a positive integer, and if so verify it in integer arithmetic.

Unfortunately, I didn't take the number theory course which dealt with this kind of equation. So I have no immediate ideas how to solve the problem more directly than with a search. Nor do I know how to put limits on how many solutions exist, although given that you're only interested in positive integers I think you can bound the solutions: (a + b)^3 gets big faster than constant * a + other_constant * b does. Adding c to the "small" side and something bigger than c to the "big" side means that with c also required to be positive, there's only a finite set of candidates for a and b that can yield solutions.

link|flag
+1, a good, practical analysis of the problem. – sheepsimulator Oct 7 at 18:14
vote up 2 vote down

Maybe you need to do some mathematical analysis to reduce the search spaces. For example, a+b must be multiples of 3 (I'll leave the proof to you).

link|flag
vote up 2 vote down

I'm pretty sure your search space can be limited to a, b, c all in ~ (1...10^6), because beyond that the cubic grows faster than the linear terms on the left - say a = 10^n, then the LHS will be 10^(n + 10) and the RHS will be 10^(3*n).

So there are finitely many solutions (in non-negative integers) and they are all within that space.

link|flag
1  
That's still a search space of 10^18 solutions, so I don't see how this makes a practical difference. – Andy Ross Oct 7 at 18:53
Combine that with the other facts, and look at Fazil's brute force solution on the crazy engineers page - it only takes minutes to search the space. – Cade Roux Oct 7 at 18:54
I'm not entirely convinced by Fazil's solution. It binary searches for c (is there guaranteed only to be one real solution in c for a given a, b? If so (for instance if all coefficients are positive), binary search is fine, if not it can miss solutions). And he uses about 30k as his limits rather than 1M (again, this could well be sufficient, but he doesn't say why). – Steve Jessop Oct 7 at 21:27
I have ported it to C# and will further investigate, I have not had time to return to this. He gives no basis for the his upper bound which is lower than mine - mine was very rough just to prove an upper bound. For a given a, b there is probably a proof there is only 1 c using the general cubic formula, I will have to look into it further. – Cade Roux Oct 7 at 21:32
I have reviewed Knuth 1 and 2 to see if there was any material on diophantine equations of this particular form, but did not find anything terribly useful. In addition, I did not find much on the Internet related to this specific problem which was not already on the crazyengineer site. – Cade Roux Oct 7 at 21:33
show 4 more comments
vote up 2 vote down

This is not a problem for C/C++/Java or C#

This is a purely maths problem.
With these languages you could potentially solve it with brute force but that is not very elegant.

You options are:

  • Get a pencil and paper and solve the problem.
  • Find a language that is designed to solve maths problems.
link|flag
1  
I'm pretty sure this isnt solvable, it can only be approximated. The proof evades me however – Kragen Oct 7 at 17:38
1  
@Martin - Thanks. Isn't it expensive to learn mathlab for solving this problem. For my head number of papers to solve this problem will be more expensive. I prefer an algorithm/program rather a set of final answers. – Vadakkumpadath Oct 8 at 4:08
MATLAB (not mathlab) is not designed to solve "maths" problems, but numerical problems (Octave and Scilab fall in the same category). Maple, Mathematica and SAGE for example could be considered as "maths" software in a broader sense. – fortran Oct 8 at 11:37
vote up 2 vote down

My maths is failing me badly (which is actually really embarrassing considering) but I believe the following to be true:

  • Only certain cubic equations in this form are "solvable", and I'm fairly sure this isnt one of them - by solvable I mean you can calculate exactly the solution, for example:

    a³ = 8

This can be solved by taking the cube root of both sides.

  • If it's not solvable then we can probably come up with some solutions by seeing what solutions we get if one or more of the parameters are 0, for example if we set B = 0 then we get the following:

    987654321 * a + c = (a + c)³

This is easier to solve (although I'm still not sure it is "solvable" in the true sense).

  • If we want to find solutions where all of the parameters are non-zero then you need to use an algorithm to approximate the solution - I did an entire module on these sorts of algorithms but I'm struggling to think of any at the moment.

  • I think it's possible to work out how many real solutions exist (as opposed to solutions which involve complex numbers i.e. sqrt(-1)), but again my memory is failing me.

This really is a maths question - and a fairly complex one at that! :-) I'm actually pretty annoyed at myself that I've forgotten all of these things so when I get the chance I'll work it out and post a full answer (although it might not be for a month or so!)

link|flag
vote up 1 vote down

{0, 0, -1} is another solution.

Fazil's solution on the crazy engineers page loops through a and b and then does a root-finding technique to find c.

Seems straightforward.

link|flag
Nice. It's already suggested by jmucchiello. Positive number sets are most welcome. – Vadakkumpadath Oct 7 at 17:17
vote up 1 vote down

Finally I got a program from net. Thanks to the programmer.

He claims his program found 4 results and first three were found with in 1 Min 48 seconds and total scan took 7 Min 19 seconds. I got much better result at my desk. Program follows. The idea behind this program is too complex to my head. So can someone please explain me the logic behind this program?

Result:

{0, 0, 1} - 0 Sec

{450, 4500, 5050} - 6 Sec

{7350, 6000, 6650} - 1 Min 48 Sec

{27150, 1500, 1350} - 6 Min 24 Sec

Program:

void main()
{
    double LHS, RHS, Duration;
    int a, b, c, Left, Right;
    time_t Start, Stop;

    time( &Start );
    for( a = 0; a < 31427; a++ )
    {
    	for( b = 0; b < 31427; b++ )
    	{
    		Left = 0;
    		Right = 31428;

    		while( Left < ( Right - 1 ))
    		{
    			c = ( Left + Right ) / 2;

    			LHS = double(a) * 987654321;
    			LHS += double(b) * 123456789;
    			LHS += double(c);

    			RHS = double( a + b + c );
    			RHS = RHS * RHS * RHS;

    			if( LHS == RHS )
    			{
    				printf("\n\n987654321*%d + 123456789*%d + %d = %.0Lf\n", a, b, c, LHS);
    				printf("(%d + %d + %d)^3 = %.0Lf\n", a, b, c, RHS);
    				printf("987654321*%d + 123456789*%d + %d = (%d + %d + %d)^3\n\n", a, b, c, a, b, c);
    				break;
    			}
    			if( LHS < RHS )
    			{
    				Right = c;
    			}
    			else
    			{
    				Left = c;
    			}
    		}	
    	}
    	time( &Stop );
    	Duration = difftime( Stop, Start );
    	int Seconds = (int)fmod( Duration, 60 );
    	int Minutes = (int)fmod( floor(Duration / 60), 60 );	
    	int Hours = int(Duration / 3600);

    	printf("\rCompleted:%0.1Lf%%", (a * 100.) / 31427);
    	printf("\tElapsed Time:%02d:%02d:%02d", Hours, Minutes, Seconds);
    }	
}

Output:

987654321*0 + 123456789*0 + 1 = 1 (0 + 0 + 1)^3 = 1 987654321*0 + 123456789*0 + 1 = (0 + 0 + 1)^3

Completed:1.4% Elapsed Time:00:00:06

987654321*450 + 123456789*4500 + 5050 = 1000000000000 (450 + 4500 + 5050)^3 = 1000000000000 987654321*450 + 123456789*4500 + 5050 = (450 + 4500 + 5050)^3

Completed:23.4% Elapsed Time:00:01:48

987654321*7350 + 123456789*6000 + 6650 = 8000000000000 (7350 + 6000 + 6650)^3 = 8000000000000 987654321*7350 + 123456789*6000 + 6650 = (7350 + 6000 + 6650)^3

Completed:86.4% Elapsed Time:00:06:24

987654321*27150 + 123456789*1500 + 1350 = 27000000000000 (27150 + 1500 + 1350)^3 = 27000000000000 987654321*27150 + 123456789*1500 + 1350 = (27150 + 1500 + 1350)^3

link|flag
Thanks to Stu for the link. @Stu - Can you please explain the logic behind this program. Thanks to Kragen for your support and suggestions. Thanks to all others for all the support, suggestions and excuses. – Vadakkumpadath Oct 8 at 4:03
2  
What the heck is an "unsigned long double"? – Drew Hall Oct 8 at 4:24
A link to the source would be more helpful than just a copy of an undocumented solution. – Accipitridae Oct 8 at 7:24
@Drew Hall - Thanks. That might be a CCP mistake. I have modified it. @Accipitridae - Thanks. The source got some formatting issues and is not that readable. I will keep your point in mind from now. – Vadakkumpadath Oct 8 at 8:36
vote up -1 vote down

A truly brilliant algorithm of this sort should be multithreaded, to utilize all processor cores modern CPUs contain

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.