Author |
Topic: Integer inequalities (Read 1137 times) |
|
NickH
Senior Riddler
Gender:
Posts: 341
|
|
Integer inequalities
« on: Nov 30th, 2004, 2:44pm » |
Quote Modify
|
Find the smallest positive integers A, B, C, D, such that A+A > A+B > A+C > B+B > B+C > A+D > C+C > B+D > C+D > D+D. (If there is any ambiguity, choose smallest D, then smallest C, then smallest B, and finally smallest A.)
|
|
IP Logged |
Nick's Mathematical Puzzles
|
|
|
towr
wu::riddles Moderator Uberpuzzler
Some people are average, some are just mean.
Gender:
Posts: 13730
|
|
Re: Integer inequalities
« Reply #1 on: Nov 30th, 2004, 3:43pm » |
Quote Modify
|
Maybe I'm getting it wrong, but there doesn't seem to be a solution..
|
|
IP Logged |
Wikipedia, Google, Mathworld, Integer sequence DB
|
|
|
NickH
Senior Riddler
Gender:
Posts: 341
|
|
Re: Integer inequalities
« Reply #2 on: Nov 30th, 2004, 4:38pm » |
Quote Modify
|
Quote: Maybe I'm getting it wrong, but there doesn't seem to be a solution.. |
| There is definitely a solution!
|
|
IP Logged |
Nick's Mathematical Puzzles
|
|
|
Aryabhatta
Uberpuzzler
Gender:
Posts: 1321
|
|
Re: Integer inequalities
« Reply #3 on: Nov 30th, 2004, 4:57pm » |
Quote Modify
|
is it 1,5,7,10 ? Found it easier to work putting B = A-X, C = A-Y and D = A-Z and finding possible values of X,Y,Z.
|
|
IP Logged |
|
|
|
Grimbal
wu::riddles Moderator Uberpuzzler
Gender:
Posts: 7527
|
|
Re: Integer inequalities
« Reply #5 on: Dec 1st, 2004, 2:32am » |
Quote Modify
|
Positive integers! ::A,B,C,D = 10,7,5,1::
|
|
IP Logged |
|
|
|
towr
wu::riddles Moderator Uberpuzzler
Some people are average, some are just mean.
Gender:
Posts: 13730
|
|
Re: Integer inequalities
« Reply #6 on: Dec 1st, 2004, 7:02am » |
Quote Modify
|
I'm an optimist, I consider everything that's not negative positive
|
|
IP Logged |
Wikipedia, Google, Mathworld, Integer sequence DB
|
|
|
Aryabhatta
Uberpuzzler
Gender:
Posts: 1321
|
|
Re: Integer inequalities
« Reply #7 on: Dec 1st, 2004, 11:27am » |
Quote Modify
|
on Dec 1st, 2004, 7:02am, towr wrote:I'm an optimist, I consider everything that's not negative positive |
| Wouldn't that make you a realist? An optimist would consider even a negative as positive..
|
|
IP Logged |
|
|
|
TenaliRaman
Uberpuzzler
I am no special. I am only passionately curious.
Gender:
Posts: 1001
|
|
Re: Integer inequalities
« Reply #8 on: Dec 1st, 2004, 9:04pm » |
Quote Modify
|
LOL!! This reminds me of a discussion i had with a philosophist. During our discussion (math based) we came up with something like this, Optimistic function : f(x) = abs(x) Realistic function : f(x) = x Ignorant function : f(x) = signum(x) Pessimistic function : f(x) = min(-inf,x) OverConfident function : f(x) = max(x,inf) We had more of this , i dont recall well .... If u were wondering what we were discussing , we were trying to capture emotions in mathematical symbols
|
|
IP Logged |
Self discovery comes when a man measures himself against an obstacle - Antoine de Saint Exupery
|
|
|
Sir Col
Uberpuzzler
impudens simia et macrologus profundus fabulae
Gender:
Posts: 1825
|
|
Re: Integer inequalities
« Reply #9 on: Dec 14th, 2004, 7:48am » |
Quote Modify
|
*chuckle* I love the pessimistic function! I'm sure we can add a few more to these... Exaggerating function: f(x)=2x Boring function: f(x)=0 Unoriginal/copycat function: f(x)=x [So I suppose that realists are unoriginal copycats!] Contradictory function: f(x)=-x Temperamental/unpredicatable/chaotic function: f(z)=z100, where z0=z and zn+1=zn2+z0
|
|
IP Logged |
mathschallenge.net / projecteuler.net
|
|
|
ThudnBlunder
wu::riddles Moderator Uberpuzzler
The dewdrop slides into the shining Sea
Gender:
Posts: 4489
|
|
Re: Integer inequalities
« Reply #10 on: Dec 14th, 2004, 5:06pm » |
Quote Modify
|
PMT function: f(x) = sin(1/x)
|
|
IP Logged |
THE MEEK SHALL INHERIT THE EARTH.....................................................................er, if that's all right with the rest of you.
|
|
|
John_Gaughan
Uberpuzzler
Behold, the power of cheese!
Gender:
Posts: 767
|
|
Re: Integer inequalities
« Reply #11 on: Dec 15th, 2004, 6:41am » |
Quote Modify
|
PMT function? on Dec 14th, 2004, 7:48am, Sir Col wrote: Temperamental/unpredicatable/chaotic function: f(z)=z100, where z0=z and zn+1=zn2+z0 |
| Interesting function. I wrote a program to calculate the sequence this generates, and noticed some interesting properties. Consecutive values tend to be different by one, with wild variances in the value and sign of numbers. Code:#include <iostream> typedef long long int int64; int64 f (int64 n) { int64 z = n; for (int64 i = 0; i < 100; ++i) z = z*z + n; return z; } int main (int argc, char **argv) { for (int64 i = (argc > 1 ? atoi (argv[1]) : 0); i <= (argc > 2 ? atoi (argv[2]) : (argc > 1 ? atoi (argv[1]) : -1)); ++i) std::cout << i << ": " << f (i) << std::endl; return EXIT_SUCCESS; } |
| Edit: I think the sign issue comes from the fact that this thing overflows even 64 bit integers.
|
« Last Edit: Dec 15th, 2004, 6:42am by John_Gaughan » |
IP Logged |
x = (0x2B | ~0x2B) x == the_question
|
|
|
ThudnBlunder
wu::riddles Moderator Uberpuzzler
The dewdrop slides into the shining Sea
Gender:
Posts: 4489
|
|
Re: Integer inequalities
« Reply #12 on: Dec 15th, 2004, 7:46am » |
Quote Modify
|
Quote: Pre Menstrual Tension I thought you said you were married.
|
« Last Edit: Dec 15th, 2004, 7:49am by ThudnBlunder » |
IP Logged |
THE MEEK SHALL INHERIT THE EARTH.....................................................................er, if that's all right with the rest of you.
|
|
|
towr
wu::riddles Moderator Uberpuzzler
Some people are average, some are just mean.
Gender:
Posts: 13730
|
|
Re: Integer inequalities
« Reply #13 on: Dec 15th, 2004, 11:02am » |
Quote Modify
|
on Dec 15th, 2004, 6:41am, John_Gaughan wrote:Interesting function. I wrote a program to calculate the sequence this generates, and noticed some interesting properties. Consecutive values tend to be different by one, with wild variances in the value and sign of numbers. |
| It's also related to the Mandelbrot set, and basicly forms one of the best known fractals to mankind.
|
« Last Edit: Dec 15th, 2004, 11:04am by towr » |
IP Logged |
Wikipedia, Google, Mathworld, Integer sequence DB
|
|
|
John_Gaughan
Uberpuzzler
Behold, the power of cheese!
Gender:
Posts: 767
|
|
Re: Integer inequalities
« Reply #14 on: Dec 15th, 2004, 11:12am » |
Quote Modify
|
on Dec 15th, 2004, 7:46am, THUDandBLUNDER wrote:Pre Menstrual Tension I thought you said you were married. |
| I am. Here in the ol' USA we call it PMS: the 'S' stands for "Syndrome."
|
|
IP Logged |
x = (0x2B | ~0x2B) x == the_question
|
|
|
TenaliRaman
Uberpuzzler
I am no special. I am only passionately curious.
Gender:
Posts: 1001
|
|
Re: Integer inequalities
« Reply #15 on: Dec 18th, 2004, 7:06am » |
Quote Modify
|
Consider f(x) as monotonically decreasing and g(x) as monotonically increasing function ... we form a new function phi(x) = f(x) + g(x) This is an altruistic function
|
|
IP Logged |
Self discovery comes when a man measures himself against an obstacle - Antoine de Saint Exupery
|
|
|
|