Sysop: | Amessyroom |
---|---|
Location: | Fayetteville, NC |
Users: | 23 |
Nodes: | 6 (0 / 6) |
Uptime: | 54:28:13 |
Calls: | 583 |
Files: | 1,139 |
D/L today: |
179 files (27,921K bytes) |
Messages: | 111,799 |
[Find two rational cubes whose sum is 17]
The first solution can be found in seconds with a fairly straighforward program. Obviously Dudeney didn't do that.
I had to look up how you might go about it. It turns out
(1) There's a solution with small numerators and denominators, but
one of them is negative;
(2) There's a recurrence relation that given one solution produces
another.
Applying (2) to (1) gives a solution in positive rationals.
So an easier puzzle is to find (1).
The first solution can be found in seconds with a fairly straighforward program. Obviously Dudeney didn't do that.
On Sat, 12 Jul 2025 23:14:47 -0000 (UTC), Richard Tobin wrote:
The first solution can be found in seconds with a fairly straighforward
program. Obviously Dudeney didn't do that.
I tried the programmatic approach and didn't find a solution in seconds,
nor even minutes - I was probably doing a lot of unnecessary looping.
I've
looked at the solution and the common denominator has five digits.
The other path looks to be the way to go.
The C# program below finds the solution in under a minute:
In article <da38f2628fe7919ad1a2f3495eeb2483@www.novabbs.com>,
IlanMayer <ilan_no_spew@hotmail.com> wrote:
The C# program below finds the solution in under a minute:
Here is a C program.