mersenneforum.org  

Go Back   mersenneforum.org > Fun Stuff > Puzzles

Reply
 
Thread Tools
Old 2018-07-06, 15:08   #12
petrw1
1976 Toyota Corona years forever!
 
petrw1's Avatar
 
"Wayne"
Nov 2006
Saskatchewan, Canada

22×7×167 Posts
Default

Quote:
Originally Posted by henryzz View Post
You need to add the restriction a <= b <= c otherwise a b c will match b a c etc
That's probably it.


14,628 candidates with a<=b<=c<=100

Last fiddled with by petrw1 on 2018-07-06 at 15:54
petrw1 is offline   Reply With Quote
Old 2018-07-06, 18:37   #13
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Cambridge (GMT/BST)

23×3×5×72 Posts
Default

It should be < not <= for the same reason.
henryzz is offline   Reply With Quote
Old 2018-07-07, 06:56   #14
Dieter
 
Oct 2017

5×23 Posts
Default

Quote:
Originally Posted by petrw1 View Post
That's probably it.


14,628 candidates with a<=b<=c<=100
There are ((100+3-1) choose 3) = 171700 triplets (a,b,c) with a<=b<=c<=100 ("combinations with repetitions").
18953 of these 171700 are obscure, but it is reasonable that you have found only 14628:
For (a,b,c) being obscure there must be a "partner of obscurity" (a1,b1,c1) with
a+b+c=a1+b1+c1 and a*b*c=a1*b1*c1.
With a1<=b1<=c1<=100 you get indeed 14628 obscure triplets.
But there is no reason for subjecting the "partners" to these limits.
It seems that there are 18953-14628 obscure triplets (a,b,c) with a<=b<=c<=100 and a1>100 or b1>100 or c1>100.
Dieter is offline   Reply With Quote
Old 2018-07-07, 12:43   #15
Dieter
 
Oct 2017

5·23 Posts
Default

An example:


(1,23,100) is obscure, because (4,5,115) has the same sum and product. If you confine yourself to numbers <=100, you don't see the obycurity of (1,23,100).
Dieter is offline   Reply With Quote
Old 2018-07-07, 14:00   #16
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dumbassville

26×131 Posts
Default

you can also note that for:
{a,b,c}=abc
{a+1,b+1,c+1}=abc+ab+bc+b+ac+a+c+1
{a+2,b+2,c+2}=abc+2ab+2bc+4b+2ac+4a+4c+8
{a+3,b+3,c+3}=abc+3ab+3bc+9b+3ac+9a+9c+27
{a+4,b+4,c+4}=abc+4ab+4bc+16b+4ac+16a+16c+64
{a+5,b+5,c+5}=abc+5ab+5bc+25b+5ac+25a+25c+125

the set sums are all the same mod 3. and the products are above. three above is same mod 3.
science_man_88 is offline   Reply With Quote
Old 2018-07-07, 18:54   #17
Dr Sardonicus
 
Dr Sardonicus's Avatar
 
Feb 2017
Nowhere

4,643 Posts
Default

I doubt I'll be able to devise a good way to solve the stated problem, but I was able to find a reasonable way to generate "obscure triples." I was curious about finding small ones. The method I devised was, to start with the product n. Then I would go through triples d, d2, d3 with d <= d2 <= d3 and d*d2*d3 = n, looking for triples with the same sum.

The smallest product n producing "obscure triples" is 36, with [1, 6, 6] and [2, 2, 9], both having product 36 and sum 13.

If you insist that the numbers in the triple all be different, the smallest product is 90, with the triples [1, 9, 10] and [2, 3, 15], both having product 90 and sum 20.

The smallest product yielding a "triplet" of obscure triples is 1200, with

[4, 15, 20], [5, 10, 24], and [6, 8, 25], all having sum 39 and product 1200.

The smallest product yielding a "quadruplet" is 25200, with

[6, 56, 75], [7, 40, 90], [9, 28, 100], and [12, 20, 105], all having sum 137 and product 25200.

I'm sure there are k-tuples of obscure triples with the same sum and product for any positive integer k, but I am too lazy even to find a "quintuplet."

EDIT: Quintuplet found: We have the five triples

[11, 84, 90], [12, 63, 110], [15, 44, 126], [18, 35, 132], and [22, 28, 135]

with product 83160 and sum 185.

Last fiddled with by Dr Sardonicus on 2018-07-07 at 19:22 Reason: New info added
Dr Sardonicus is offline   Reply With Quote
Old 2018-07-07, 21:22   #18
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Cambridge (GMT/BST)

23·3·5·72 Posts
Default

It looks like you are most of the way there.
henryzz is offline   Reply With Quote
Old 2018-07-29, 06:24   #19
Dieter
 
Oct 2017

11100112 Posts
Default

There aretwo solutions for 6 consecutive years in the domain1<=a<=b<=c<=1500 with b<=900 for both solutions. So you shouldhave found these both combinations. A possible explanation could be that in onecase b1>1000 (if I denote the “partner of obscurity” of abc with a1b1c1).
Currently Icheck 1<=a<=b<=c<=2000. There are 2000*2001*2002:6 = 1.335.334.000 triples.For each triple I store only 0 for “not obscure” and 1 for “obscure”. So myfield containing the full information of obscurity has only 1.335.334.000: 8 = 166.916.750 bytes:
111 bit 0 of byte 0
112 bit 1 of byte 0
….
118 bit 7 of byte 0
119 bit 0 of byte 1

2000 20002000 bit 7 of byte166916749
For findingthe bit corresponding to a given triplet abc I use two tables built so that Ineed only multiplications by powers of 2.
Dieter is offline   Reply With Quote
Old 2018-08-01, 22:10   #20
Xyzzy
 
Xyzzy's Avatar
 
"Mike"
Aug 2002

25×257 Posts
Default

http://www.research.ibm.com/haifa/po.../July2018.html
Xyzzy is offline   Reply With Quote
Old 2018-08-02, 07:58   #21
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Cambridge (GMT/BST)

23·3·5·72 Posts
Default

I was hoping that someone would have pushed it to find 7 consecutive.
henryzz is offline   Reply With Quote
Old 2018-08-02, 14:13   #22
EdH
 
EdH's Avatar
 
"Ed Hall"
Dec 2009
Adirondack Mtns

1110111010012 Posts
Default

I guess I didn't have the horsepower and my c++ programs were way too inefficient. I found lots of fives, but was nowhere near the region where the sixes resided. I even dusted off my archaic assembly skills. At one point I had a file of saved info that was over 18GB, but I couldn't efficiently use the data. I ran several machines to the end, though.
EdH is offline   Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
July 2017 R. Gerbicz Puzzles 6 2017-08-08 22:58
July 2016 Xyzzy Puzzles 4 2016-08-06 22:51
July 2015 Xyzzy Puzzles 16 2015-08-19 16:13
July 2014 Xyzzy Puzzles 6 2014-11-02 19:05
Happy July 4th LaurV Lounge 8 2012-07-06 00:13

All times are UTC. The time now is 03:34.


Sat Jul 17 03:34:18 UTC 2021 up 50 days, 1:21, 1 user, load averages: 1.71, 1.97, 1.70

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.