top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Concerning cheque: What was the exact amount of that cheque?

0 votes
885 views

A man went into a bank to cash a cheque. In handing over the money the cashier, by mistake, gave him dollars for cents and cents for dollars. He pocketed the money without examining it, and spent a nickel on his way home.

He then found that he possessed exactly twice the amount of the cheque. He had no money in his pocket before going to the bank. What was the exact amount of that cheque?

posted Jan 13, 2015 by Mohammed Hussain

Share this puzzle
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

0 votes

Assuming the check originally had x dollars and y cents, it was worth 100*x + y cents. The amount he got 100*y + x cents.
After spending 5 cents, he had 100*y + x - 5 cents, which is twice 100*x + y.
So 2(100x + y) = 100y + x - 5 or 200x + 2y = 100y + x - 5 or 199x - 98y = -5 which doesn't look like enough information to solve the problem except that x and y must be whole numbers. so 98y = 199x + 5, y = (199x + 5)/98 = 2x + (3x + 5)/98
Since x and y are whole numbers, so must be (3x + 5)/98.
Call it z = (3x+5)/98 so 98z = 3x + 5, or 3x = 98z - 5 or x = (98z - 5)/3 or x = 32z-1 + (2z-2)/3.
Since everything is a whole number, so must be (2z-2)/3.
Call it w = (2z-2)/3, so 3w = 2z-2 so z = (3w+2)/2 or z = w + 1 + w/2. So w/2 must be whole, or w must be even.
So try w = 2. Then z = 4. Then x = 129. Then y = 262.
These answers are no good, but looking at the original equation, if you decrease y by 199 and x by 98, the answer will still obviously work, so do that: y = 63 and x = 31.
Original check: $31.63 Recieved: $63.31.
Subtract a nickel: $63.26 = 2 times $31.63.

answer Aug 30, 2018 by Hanifa Mammadov
0 votes

Ciao, here simple code I used on Matlab for finding the answer which it is 31.63 $.

clc
%initialization
ttl0=0;
ttl2=0;
ttl1=0;
add=0.01;
diff=1;

d0=1
c0=0.01
ttl0=d0+c0
%end init

while abs(diff)>0.01
ttl0=ttl0+add;
d0=floor(ttl0);
c0=ttl0-floor(ttl0);

d1=c0*100;
c1=d0/100;
ttl1=d1+c1;
ttl2=ttl1-0.05;

diff=ttl2-(2*ttl0);
end

clc

check=ttl0
double_check=ttl0*2
current_wallet=ttl2

Bye
Marco

answer Sep 25, 2021 by Marco Loggia



Similar Puzzles
+2 votes

Aishwarya Rai walks into a bank to cash out her cheque.
By mistake the bank teller gives her dollar amount in change, and her cent amount in dollars.
On the way home she spends 5 cent, and then suddenly she notices that she has twice the amount of her cheque.

How much was her cheque amount ?

0 votes

A man has a bank cheque of denomination value X Rupees Y Paise. He went to bank to cash it. Bank manager by mistake paid him the cash money in reverse order, i.e., Y Rupees X paisa. The man was very lucky. He get Rupees 1 more than double of his actual payment. What was the actual denomination value of the bank cheque?

0 votes

You went to a bank to cash out your cheque.

By mistake the bank cashier gives you-

Dollar amount in cent, and
Cent amount in dollars.
On the way home you spends 5 cent, and then suddenly you notices that you have twice the amount of your cheque.

How much was have you written on cheque ?

0 votes

Two trains, each two miles long, enter two one mile long tunnels that are two miles apart from one another on the same track. The trains enter the tunnels at exactly the same time. The first train is going 5 miles/hour, and the second train is going 10 miles/hour. What is the sum of the lengths of the two trains that will protrude from the tunnels at the exact moment that they collide, assuming that neither train changes its speed prior to collision? The trains are on the same track headed in opposite directions (i.e. directly toward one another).

0 votes

In a doctors' surgery the first 15 patients were only in the consulting room for an average of three minutes each.

After a further 30 people had seen their doctor, the average number of minutes spent in the consulting room increased to eight minutes per patient.

What was the average amount of time each of the last 30 patients spent in the consulting room?

...