zoobyshoe
- 6,506
- 1,268
Enigman is correct on the two he answered. Office Shredder, however, is not correct.
lendav_rott said:The probability it's a penny is real, because there is no other way of making a dollar with 50 coins.
He had no 50 cent coins, that's for sure also the number of pennies has to be a x5 or a x0
He could have 40 pennies, 8 nickels and 2 dimes - 4/5 = 80%
(EDIT1-And cross posted with inotyce now...zoobyshoe said:Billy had a coin purse with fifty coins, totaling exactly $1.00. Unfortunately, while counting them, he dropped one coin behind the radiator. What is the probability it was a penny?
For furriners:
$1.00
= 100 pennies
= 2 half dollars
= 4 quarters
= 10 dimes
= 20 nickels
zoobyshoe said:This is a difficult problem. I got this out of a MENSA puzzle book. Only 30% of MENSA members who took the test got this one right.
Your answer is, unfortunately, incorrect.
lendav_rott said:The problem is poorly worded, I can't see any "hidden text" referring to something elusive. If there are different combinations of 50 coins to make 1 dollar then they can't ask what the probability of the lost coin being a penny is. This is not math anymore, this is linguistics 1o1 seems like.
If there are different combinations of 50 coins to make 1 dollar then they can't ask what the probability of the lost coin being a penny is.
I think the wording okay. It's this type of logic that is necessary to explore (in terms of information theory) when designing/analyzing digital communication systems. Digital communication systems involve things like your cell phone and WiFi.lendav_rott said:The problem is poorly worded, I can't see any "hidden text" referring to something elusive. If there are different combinations of 50 coins to make 1 dollar then they can't ask what the probability of the lost coin being a penny is. This is not math anymore, this is linguistics 1o1 seems like.
zoobyshoe said:I got the same answer as Office Shredder. The book says this is wrong, due to the fact there is more than one combination of coins possible.
The authors of the book obviously believe you can. The answer they give as correct is the average of the probabilities of all the possible combinations.
zoobyshoe said:Billy had a coin purse with fifty coins, totaling exactly $1.00. Unfortunately, while counting them, he dropped one coin behind the radiator. What is the probability it was a penny?
For furriners:
$1.00
= 100 pennies
= 2 half dollars
= 4 quarters
= 10 dimes
= 20 nickels
Enigman said:Was I correct? Or was inotyce?
lisab said:Maybe the space behind the radiator *only* big enough to hold a penny. A dime would fall through and the other coins are too big.
Therefore the chance of the coin being a penny is 100%.
![]()
collinsmark said:There are exactly two permutations that are possible.
(a) 2 dimes, 8 nickels, and 40 pennies.
(b) 1 quarter, 2 dimes, 2 nickels, 45 pennies.
No other combinations are possible.
zoobyshoe said:Just for my edification, how did you arrive at the fact there was more than one possible combination, and that two combinations was the upper limit? (I assumed there must only be one possible combination and, as soon as I found it by trial-and-error, stopped and thought I had the answer. That, to me, was the trick part of this puzzle, that they passively allow you to assume there's probably only one combination.)
a-no. of penniesa+b+c+d+e=50
0.01a+0.5b+0.25c+0.1d+0.05e=1
a,b,c,d,e belong to N
to find: a/50
There can be more than one solution for two equations.
a has to have a units digit of either 5 or 0(relying only on trial and error now)
zoobyshoe said:Just for my edification, how did you arrive at the fact there was more than one possible combination, and that two combinations was the upper limit? (I assumed there must only be one possible combination and, as soon as I found it by trial-and-error, stopped and thought I had the answer. That, to me, was the trick part of this puzzle, that they passively allow you to assume there's probably only one combination.)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Coin_Behind_Radiator
{
class Program
{
static void Main(string[] args)
{
int F, Q, D, N, P;
double f = 0.5;
double q = 0.25;
double d = 0.1;
double n = 0.05;
double p = 0.01;
for (F = 0; F < 51; F++)
{
for (Q = 0; Q < 51; Q++)
{
for(D = 0; D < 51; D++)
{
for(N=0; N < 51; N++)
{
for (P = 0; P < 51; P++)
{
if ((f * F + q * Q + d * D + n * N + p * P == 1)
&& (F + Q + D + N + P == 50))
{
// We got one. Print it out.
Console.WriteLine(F + " Fifty-Cent pieces, "
+ Q + " Quarters, "
+ D + " Dimes, "
+ N + " Nickels "
+ P + " Pennies.");
}
}
}
}
}
}
Console.WriteLine("Press any key to quit.");
Console.ReadKey();
}
}
}
zoobyshoe said:If Susan is 10, Arabella is 20, and Jim and Neal are both 5, but Richard is 10, how much is Jennifer by the same logic?
Not baseball. You're on the verge of a real "DOH!" moment, I think.Enigman said:I tried letter-number exchange and syllable-number exchange...but I'm drawing a blank...
So, Baseball?
you can't use programming...and to think I didn't even use a pen and paper, typed all my thoughts out
...but that probably lead me to my 30/20 mistake...to atone for that I am giving up my avatar.Enigman said:that's cheating Collinsmarkyou can't use programming...and to think I didn't even use a pen and paper, typed all my thoughts out
...but that probably lead me to my 30/20 mistake...to atone for that I am giving up my avatar.
I will cogitate on this. Thanks.Enigman said:EDIT-*crossed posts with collinsmark but hopefully between two of us we could clear it up better.
*
Ok, so let's begin with the variables:
a-no. of pennies b-no. of half-dollars c-no. of quarters d- no. of dimes e-no. of nickels
the equations that have to hold are:
a+b+c+d+e=50
0.01a+0.5b+0.25c+0.1d+0.05e=1
But it is a general rule of math that to get unique values for all variables we need at least as many equations as there are variables otherwise there are infinite solutions.
But we have the constraint that a.b.c.d.e are number of coins so they are whole numbers less than 50(total no. of coins)
After this we see that as lendav_rott said no. of pennies has to be non-zero otherwise we won't get anything near 50 coins.
then the no. of pennies has to be a multiple of 5 with units place 5 or 0 as otherwise we have no chance of getting $1 as sum- because all other values of coins in terms of pennies are multiples of 5.
After that its trial and error. 45 pennies and 40 pennies check out.
When we reach 35 we see that the no. of nickels can't cover it from then on to make 50. (nickels being the least valued after a penny)
So we can conclude that 45 and 40 pennies are the only case possible.
Assuming equal probability for both cases 1/2*45/50+1/2*40/50=0.85
Hope that clears things up a bit.