wu :: forums
« wu :: forums - Integer inequalities »

Welcome, Guest. Please Login or Register.
Apr 18th, 2024, 3:37pm

RIDDLES SITE WRITE MATH! Home Home Help Help Search Search Members Members Login Login Register Register
   wu :: forums
   riddles
   easy
(Moderators: ThudnBlunder, william wu, Icarus, Eigenray, SMQ, towr, Grimbal)
   Integer inequalities
« Previous topic | Next topic »
Pages: 1  Reply Reply Notify of replies Notify of replies Send Topic Send Topic Print Print
   Author  Topic: Integer inequalities  (Read 1127 times)
NickH
Senior Riddler
****





   
WWW

Gender: male
Posts: 341
Integer inequalities  
« on: Nov 30th, 2004, 2:44pm »
Quote Quote Modify 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: male
Posts: 13730
Re: Integer inequalities  
« Reply #1 on: Nov 30th, 2004, 3:43pm »
Quote Quote Modify 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
****





   
WWW

Gender: male
Posts: 341
Re: Integer inequalities  
« Reply #2 on: Nov 30th, 2004, 4:38pm »
Quote Quote Modify 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: male
Posts: 1321
Re: Integer inequalities  
« Reply #3 on: Nov 30th, 2004, 4:57pm »
Quote Quote Modify 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
towr
wu::riddles Moderator
Uberpuzzler
*****



Some people are average, some are just mean.

   


Gender: male
Posts: 13730
Re: Integer inequalities  
« Reply #4 on: Dec 1st, 2004, 12:47am »
Quote Quote Modify Modify

::0,4,6,9::
IP Logged

Wikipedia, Google, Mathworld, Integer sequence DB
Grimbal
wu::riddles Moderator
Uberpuzzler
*****






   


Gender: male
Posts: 7526
Re: Integer inequalities  
« Reply #5 on: Dec 1st, 2004, 2:32am »
Quote Quote Modify 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: male
Posts: 13730
Re: Integer inequalities  
« Reply #6 on: Dec 1st, 2004, 7:02am »
Quote Quote Modify Modify

I'm an optimist, I consider everything that's not negative positive Wink
IP Logged

Wikipedia, Google, Mathworld, Integer sequence DB
Aryabhatta
Uberpuzzler
*****






   


Gender: male
Posts: 1321
Re: Integer inequalities  
« Reply #7 on: Dec 1st, 2004, 11:27am »
Quote Quote Modify Modify

on Dec 1st, 2004, 7:02am, towr wrote:
I'm an optimist, I consider everything that's not negative positive Wink

 
Wouldn't that make you a realist?
An optimist would consider even a negative as positive..   Grin
IP Logged
TenaliRaman
Uberpuzzler
*****



I am no special. I am only passionately curious.

   


Gender: male
Posts: 1001
Re: Integer inequalities  
« Reply #8 on: Dec 1st, 2004, 9:04pm »
Quote Quote Modify 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  Cheesy
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

   
WWW

Gender: male
Posts: 1825
Re: Integer inequalities  
« Reply #9 on: Dec 14th, 2004, 7:48am »
Quote Quote Modify Modify

*chuckle*  Grin
 
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: male
Posts: 4489
Re: Integer inequalities  
« Reply #10 on: Dec 14th, 2004, 5:06pm »
Quote Quote Modify 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!

5187759 5187759   john23874   SnowmanJTG
WWW Email

Gender: male
Posts: 767
Re: Integer inequalities  
« Reply #11 on: Dec 15th, 2004, 6:41am »
Quote Quote Modify 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: male
Posts: 4489
Re: Integer inequalities  
« Reply #12 on: Dec 15th, 2004, 7:46am »
Quote Quote Modify Modify

Quote:
PMT function?

Pre
Menstrual
Tension
I thought you said you were married.    Wink
 
« 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: male
Posts: 13730
Re: Integer inequalities  
« Reply #13 on: Dec 15th, 2004, 11:02am »
Quote Quote Modify 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!

5187759 5187759   john23874   SnowmanJTG
WWW Email

Gender: male
Posts: 767
Re: Integer inequalities  
« Reply #14 on: Dec 15th, 2004, 11:12am »
Quote Quote Modify Modify

on Dec 15th, 2004, 7:46am, THUDandBLUNDER wrote:
Pre
Menstrual
Tension
I thought you said you were married.    Wink

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: male
Posts: 1001
Re: Integer inequalities  
« Reply #15 on: Dec 18th, 2004, 7:06am »
Quote Quote Modify 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
 Grin
IP Logged

Self discovery comes when a man measures himself against an obstacle - Antoine de Saint Exupery
Pages: 1  Reply Reply Notify of replies Notify of replies Send Topic Send Topic Print Print

« Previous topic | Next topic »

Powered by YaBB 1 Gold - SP 1.4!
Forum software copyright © 2000-2004 Yet another Bulletin Board