Last visit was: 26 Apr 2026, 10:35 It is currently 26 Apr 2026, 10:35
Close
GMAT Club Daily Prep
Thank you for using the timer - this advanced tool can estimate your performance and suggest more practice questions. We have subscribed you to Daily Prep Questions via email.

Customized
for You

we will pick new questions that match your level based on your Timer History

Track
Your Progress

every week, we’ll send you an estimated GMAT score based on your performance

Practice
Pays

we will pick new questions that match your level based on your Timer History
Not interested in getting valuable practice questions and articles delivered to your email? No problem, unsubscribe here.
Close
Request Expert Reply
Confirm Cancel
User avatar
Bunuel
User avatar
Math Expert
Joined: 02 Sep 2009
Last visit: 26 Apr 2026
Posts: 109,837
Own Kudos:
Given Kudos: 105,896
Products:
Expert
Expert reply
Active GMAT Club Expert! Tag them with @ followed by their username for a faster response.
Posts: 109,837
Kudos: 811,418
 [15]
1
Kudos
Add Kudos
14
Bookmarks
Bookmark this Post
Most Helpful Reply
User avatar
IanStewart
User avatar
GMAT Tutor
Joined: 24 Jun 2008
Last visit: 24 Apr 2026
Posts: 4,143
Own Kudos:
11,280
 [5]
Given Kudos: 99
Expert
Expert reply
Posts: 4,143
Kudos: 11,280
 [5]
4
Kudos
Add Kudos
1
Bookmarks
Bookmark this Post
General Discussion
User avatar
road740
Joined: 02 Feb 2021
Last visit: 14 Dec 2022
Posts: 35
Own Kudos:
40
 [2]
Given Kudos: 21
Posts: 35
Kudos: 40
 [2]
1
Kudos
Add Kudos
1
Bookmarks
Bookmark this Post
User avatar
Adarsh_24
Joined: 06 Jan 2024
Last visit: 03 Apr 2025
Posts: 240
Own Kudos:
Given Kudos: 2,015
Posts: 240
Kudos: 65
Kudos
Add Kudos
Bookmarks
Bookmark this Post
IanStewart
If Ben has x one-dollar bills, and t ten-dollar bills, then Ben has 10t + x dollars. We know Ben also has tx dollars. So we have this equation, which we can solve for x:

\(\\
\begin{align}\\
10t + x &= tx \\\\
10t &= tx - x \\\\
10t &= x(t - 1) \\\\
x &= \frac{10t}{t-1}\\
\end{align}\\
\)

Now x is an integer. So the fraction 10t/(t-1) needs to cancel down completely, and t-1 must be a factor of 10t. But t-1 and t are consecutive integers, so their GCD is 1, and t-1 can't cancel anything from t. So t-1 must be a factor of 10, and t-1 can equal 1, 2, 5 or 10. Since t < 10, we can rule out the largest of these, which leaves us with three possible values of t: 2, 3 or 6. If we plug those back in to the equation x + 10t = tx, we get three solutions:

t = 2, x = 20
t = 3, x = 15
t = 6, x = 12

and the possible values of t + x, which is what we're asked to find, are 18 or 22, and only 18 is among the choices.
Hi IanStewart

In hindsight your method seems so obvious.
But, I started with an equation for t with x and after applying the constraint got x > 100/9 which threw me into a loop.
Did you make an intended effort to form the equation for x so that gcd property of consecutive numbers can be used?

Is it coming from experience or some clue in the question?
User avatar
IanStewart
User avatar
GMAT Tutor
Joined: 24 Jun 2008
Last visit: 24 Apr 2026
Posts: 4,143
Own Kudos:
11,280
 [3]
Given Kudos: 99
Expert
Expert reply
Posts: 4,143
Kudos: 11,280
 [3]
3
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Quote:
Hi IanStewart

In hindsight your method seems so obvious.
But, I started with an equation for t with x and after applying the constraint got x > 100/9 which threw me into a loop.
Did you make an intended effort to form the equation for x so that gcd property of consecutive numbers can be used?

Is it coming from experience or some clue in the question?

When I look at a question like this, I'd think about it as follows:

• the question asks for "a possible value" of t + x. That usually means there are at least two possible answers to the question, and only one of those answers appears among the answer choices. So we will either end up with an equation like a quadratic, with two (or more) solutions, only one of which will appear among the answer choices, or more often, a situation where there are several possible answers, and where we may need to test some values. Either way, I'll want to translate to algebra, to see if we get a quadratic, or to see if we can find some way to limit the options we might need to test;

• after producing the equation 10t + x = tx, because the question asks for the value of t + x, the first thing I'd always do is to try to rewrite the equation with t + x on one side, because then I might immediately learn a lot about the quantity the question asks us to find. That doesn't turn out to help much here, as far as I can see, but is often the fastest way to do a lot of similar questions;

• since we can't learn about t + x directly, the most obvious thing to do is to try to learn something about either t or x alone. It really doesn't matter which letter you solve for -- in my solution I solved for x, but if you instead solve for t, you get this equation:

10t + x = tx
x = tx - 10t
x = t(x - 10)
t = x/(x - 10)

Notice now x is divisible by x-10; these numbers are 10 apart, so x-10 would need to be a divisor of 10, so can only be 1, 2, 5 or 10 (there are a few ways to see that -- it's maybe easier to let y = x - 10, so we know y + 10 is divisible by y, or (y + 10)/y is an integer, so 1 + (10/y) is an integer and y = x - 10 is a divisor of 10). So x can only be 11, 12, 15 or 20, and we have only a few options to investigate.

I did not focus on the constraint t < 10 (though in a different problem, perhaps I would have) because it doesn't seem very restrictive here -- even with that constraint, we have many possible values of t. Not only that, but we already know, glancing at the answer choices, that t can't be very large, so the restriction doesn't seem likely to help much. If we're going to narrow down our possibilities here, we'll have to look at the other information in the problem.
User avatar
Adarsh_24
Joined: 06 Jan 2024
Last visit: 03 Apr 2025
Posts: 240
Own Kudos:
65
 [1]
Given Kudos: 2,015
Posts: 240
Kudos: 65
 [1]
1
Kudos
Add Kudos
Bookmarks
Bookmark this Post
IanStewart
Quote:
Hi IanStewart

In hindsight your method seems so obvious.
But, I started with an equation for t with x and after applying the constraint got x > 100/9 which threw me into a loop.
Did you make an intended effort to form the equation for x so that gcd property of consecutive numbers can be used?

Is it coming from experience or some clue in the question?

When I look at a question like this, I'd think about it as follows:

• the question asks for "a possible value" of t + x. That usually means there are at least two possible answers to the question, and only one of those answers appears among the answer choices. So we will either end up with an equation like a quadratic, with two (or more) solutions, only one of which will appear among the answer choices, or more often, a situation where there are several possible answers, and where we may need to test some values. Either way, I'll want to translate to algebra, to see if we get a quadratic, or to see if we can find some way to limit the options we might need to test;

• after producing the equation 10t + x = tx, because the question asks for the value of t + x, the first thing I'd always do is to try to rewrite the equation with t + x on one side, because then I might immediately learn a lot about the quantity the question asks us to find. That doesn't turn out to help much here, as far as I can see, but is often the fastest way to do a lot of similar questions;

• since we can't learn about t + x directly, the most obvious thing to do is to try to learn something about either t or x alone. It really doesn't matter which letter you solve for -- in my solution I solved for x, but if you instead solve for t, you get this equation:

10t + x = tx
x = tx - 10t
x = t(x - 10)
t = x/(x - 10)

Notice now x is divisible by x-10; these numbers are 10 apart, so x-10 would need to be a divisor of 10, so can only be 1, 2, 5 or 10 (there are a few ways to see that -- it's maybe easier to let y = x - 10, so we know y + 10 is divisible by y, or (y + 10)/y is an integer, so 1 + (10/y) is an integer and y = x - 10 is a divisor of 10). So x can only be 11, 12, 15 or 20, and we have only a few options to investigate.

I did not focus on the constraint t < 10 (though in a different problem, perhaps I would have) because it doesn't seem very restrictive here -- even with that constraint, we have many possible values of t. Not only that, but we already know, glancing at the answer choices, that t can't be very large, so the restriction doesn't seem likely to help much. If we're going to narrow down our possibilities here, we'll have to look at the other information in the problem.
Great explanation. Thank you !
User avatar
glagad
Joined: 03 Jun 2022
Last visit: 30 Mar 2026
Posts: 328
Own Kudos:
Given Kudos: 116
Location: India
Concentration: Technology, Leadership
GMAT Focus 1: 645 Q90 V77 DI79
GPA: 8.98
GMAT Focus 1: 645 Q90 V77 DI79
Posts: 328
Kudos: 66
Kudos
Add Kudos
Bookmarks
Bookmark this Post
IanStewart
If Ben has x one-dollar bills, and t ten-dollar bills, then Ben has 10t + x dollars. We know Ben also has tx dollars. So we have this equation, which we can solve for x:

\(\\
\begin{align}\\
10t + x &= tx \\\\
10t &= tx - x \\\\
10t &= x(t - 1) \\\\
x &= \frac{10t}{t-1}\\
\end{align}\\
\)

Now x is an integer. So the fraction 10t/(t-1) needs to cancel down completely, and t-1 must be a factor of 10t. But t-1 and t are consecutive integers, so their GCD is 1, and t-1 can't cancel anything from t. So t-1 must be a factor of 10, and t-1 can equal 1, 2, 5 or 10. Since t < 10, we can rule out the largest of these, which leaves us with three possible values of t: 2, 3 or 6. If we plug those back in to the equation x + 10t = tx, we get three solutions:

t = 2, x = 20
t = 3, x = 15
t = 6, x = 12

and the possible values of t + x, which is what we're asked to find, are 18 or 22, and only 18 is among the choices.
This is a great solution. Do you think we can use backsolving/substitution here in any way? Just curious?
User avatar
shaurya_gmat
Joined: 05 Jun 2023
Last visit: 20 Jan 2026
Posts: 65
Own Kudos:
Given Kudos: 133
GPA: 3
Products:
Posts: 65
Kudos: 34
Kudos
Add Kudos
Bookmarks
Bookmark this Post
# 1 currency = a
# 10 curreny = b
Given a*b = a + 10 b & b <10

I just started plugging values starting b = 9 and reducing b by 1 each time i didn't get an integer a .
When b = 6, a =12 therefore a+b = 18..

I saw the solution posted above by Ian and upon reading through it looks pretty obvious, but that did not strike me while solving the question.
User avatar
bumpbot
User avatar
Non-Human User
Joined: 09 Sep 2013
Last visit: 04 Jan 2021
Posts: 38,989
Own Kudos:
Posts: 38,989
Kudos: 1,118
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Automated notice from GMAT Club BumpBot:

A member just gave Kudos to this thread, showing it’s still useful. I’ve bumped it to the top so more people can benefit. Feel free to add your own questions or solutions.

This post was generated automatically.
Moderators:
Math Expert
109837 posts
Tuck School Moderator
852 posts