MathQuiz 4 is easy. But don't answer if you stink in math.
There are Four (One just added) questions.
Email me at HapAngery@netscape.net to answer them. Changed
Are parts 2 and 3 also from ScientificAmerican?
They came from a book called Colossal Book of Mathematics, by MartinGardner {ISBN: 0393020231}, which is an updated collection of his articles in ScientificAmerican.
Q1: 3121 bananas - a simple computer program suffices to confirm this answer by trial and error, or proceed as described in Scientific American.
Q2: 8 feet (ignoring measurement difficulties due to the width of the stripe), due to a right-angled triangle with angle specified being half of an equilateral triangle.
Q3: 690 (570 + 120), again verifiable by trial and error. A better method doesn't seem to be readily available, which makes this a very poor type of question. -- VickiKerr
Question 1 and 2 are right. Question 3 is wrong, try new calculations. Vey One sorry -- HapAngery
Oops! While waiting for your email address to be corrected, I lost my original notes. In recreating my last answer, I inadvertently added in 10 incorrectly. I should have given 680 (560 + 120). -- VickiKerr
Q4: Alphabetical order of the English names for the digits.
Wrong, look closely, it's not, got tricked. -- HapAngery
Not at all - you changed "3" to "8" in the question after it was correctly answered. Alphabetical order is still the basis, even if one digit doesn't fit the overall pattern.
Here's a horrible PythonLanguage program I wrote to figure out the bananas question. I initially emailed it to the incorrect email address but now that the answer is out I figured I'd post it here. -- BrianRobinson
def man(x):
stop = "no"
x -= 1 #one for the monkey
if x % 5 != 0: # five equal piles
stop = "yes"
elif x / 5 < 1: # each man gets at least one
stop = "yes"
else:
x -= x / 5
return x, stop
def finalSplit(x):
correct = 1
if x % 5 != 0: # five equal piles
correct = 0
elif x / 5 < 1: # each man gets at least one
correct = 0
return correct
for bananas in range(1000000):
temp = bananas
for men in range(5): # five men
temp, stop = man(temp)
if stop == "yes":
stop = "no"
break
stop = "good"
if stop == "good" and finalSplit(temp):
print bananas
break
But everyone knows the answer to problem 1 is -4. Solve x = 4/5(x-1). For a better answer, realize that any true answer must be equivalent to -4 modulo 5^5. And 5^5 - 4 is 3121. -- EricJablow