Last visit was: 28 Mar 2025, 02:42 It is currently 28 Mar 2025, 02:42
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: 28 Mar 2025
Posts: 100,116
Own Kudos:
Given Kudos: 92,748
Products:
Expert
Expert reply
Active GMAT Club Expert! Tag them with @ followed by their username for a faster response.
Posts: 100,116
Kudos: 711,470
 [50]
3
Kudos
Add Kudos
47
Bookmarks
Bookmark this Post
Most Helpful Reply
avatar
HardWorkBeatsAll
Joined: 17 Aug 2015
Last visit: 19 Jul 2020
Posts: 90
Own Kudos:
329
 [5]
Given Kudos: 341
Location: India
Concentration: Strategy, General Management
GMAT 1: 750 Q49 V42
GPA: 4
WE:Information Technology (Finance: Investment Banking)
GMAT 1: 750 Q49 V42
Posts: 90
Kudos: 329
 [5]
3
Kudos
Add Kudos
2
Bookmarks
Bookmark this Post
User avatar
Bunuel
User avatar
Math Expert
Joined: 02 Sep 2009
Last visit: 28 Mar 2025
Posts: 100,116
Own Kudos:
711,470
 [5]
Given Kudos: 92,748
Products:
Expert
Expert reply
Active GMAT Club Expert! Tag them with @ followed by their username for a faster response.
Posts: 100,116
Kudos: 711,470
 [5]
3
Kudos
Add Kudos
2
Bookmarks
Bookmark this Post
General Discussion
avatar
ishan92
Joined: 22 Jan 2015
Last visit: 24 Jul 2022
Posts: 18
Own Kudos:
12
 [1]
Given Kudos: 1,643
Posts: 18
Kudos: 12
 [1]
1
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Every digit of a number written in binary is either 0 or 1. To translate a number from binary, multiply the nth digit (reading from right to left) by 2^(n-1)

What is the largest prime number (written in binary) that is a factor of both 100010000 and 1000100000 ?

(A) 10
(B) 11
(C) 101
(D) 1011
(E) 10001


Ans)
Starting from right count the positions of 1s
100010000=(1*2^8) + (1*2^4)=(2^8 + 2^4)
similarly,
1000100000=(1*2^9)+(1*2^5)=(2^9 + 2^5)

Lets simplify them further,

(2^8 + 2^4)=2^4(2^4 +1)=2^4(16+1)=2^4(17)

(2^9 + 2^5)=2^5(2^4 +1)=2^5(16+1)=2^5(17)

The prime numbers common in both are 2 and 17, and the largest one is 17.

from the options, (E) 10001=1*2^4+1*2^0=16+1=17

Hence answer (E).
avatar
pankajvashist
Joined: 10 Jan 2013
Last visit: 23 Jan 2017
Posts: 36
Own Kudos:
11
 [1]
Given Kudos: 5
Location: United States
Concentration: General Management, Operations
GMAT 1: 710 Q49 V38
GPA: 3.02
WE:Design (Telecommunications)
1
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Binary Divison can provide a quick answer if you are comfortable with it.

as option E is the biggest binary number we try with it first :

100010000/ 10001 =10000

1000100000/ 10001 =100000

so answer is option is E
avatar
ugur
Joined: 23 Sep 2015
Last visit: 25 Sep 2015
Posts: 4
Own Kudos:
4
 [1]
Given Kudos: 1
Posts: 4
Kudos: 4
 [1]
1
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Bunuel
Bunuel
Every digit of a number written in binary is either 0 or 1. To translate a number from binary, multiply the nth digit (reading from right to left) by 2^(n-1)

What is the largest prime number (written in binary) that is a factor of both 100010000 and 1000100000 ?

(A) 10
(B) 11
(C) 101
(D) 1011
(E) 10001

Kudos for a correct solution.

MANHATTAN GMAT OFFICIAL SOLUTION:

To begin this problem, translate the numbers written in binary.

\(100010000 = 1*2^8 + 0*2^7 + 0*2^6 + 0*2^5 + 1*2^4 + 0*2^3 + 0*2^2 + 0*2^1 + 0*2^0\)

This simplifies to \(2^8 + 2^4\).

Similarly, 1000100000 simplifies to \(2^9 + 2^5\).

We could then translate these further.

\(2^8 + 2^4 = 256 + 16 = 272\)
\(2^9 + 2^5 = 512 + 32 = 544\)

We need to find the greatest common factor of both of these numbers. At this point, we could do a prime factorization of both numbers. They are large, however, and this process could be tedious. It will actually be easier to find common factors of these numbers from their previous forms.
When an expression like 2^8 + 2^4 appears on the GMAT, it is usually helpful to factor out the largest common factor of both terms of the expression. In this case, factor out 2^4.

\(2^8 + 2^4\) → \(2^4(2^4+1)\) → \(2^4(16+1)\) → \(2^4(17)\)

From this we can see that 272 has only two prime factors: 2 and 17.

Now do the same for 544.

\(2^9 + 2^5\) → \(2^5(2^4 + 1)\) → \(2^5(16 + 1)\) → \(2^5(17)\)

544 has the same two prime factors: 2 and 17. So the greatest common prime factor of the two numbers is 17. Now we need to translate 17 back into binary. Notice from the manipulations above that

\(17 = 2^4 + 1, or 2^4 + 2^0\)

Thus, 17 written in binary is 10001.

The correct answer is E.

Thanks for the explanation Bunuel. But do we really need to go through this process. I just looked at the two numbers in the question. The second number ( 1000100000) is the first number (100010000) multiplied by 10. Then I took a look at E which is the highest value given among the questions. I just realized that you would need to multiply that by 10 several times to divide both the first number and the second number so I chose E. I didn't bother with the binary calculations. Is my reasoning flawed?
avatar
GSBae
Joined: 23 May 2013
Last visit: 07 Mar 2025
Posts: 168
Own Kudos:
431
 [1]
Given Kudos: 42
Location: United States
Concentration: Technology, Healthcare
GMAT 1: 760 Q49 V45
GPA: 3.5
GMAT 1: 760 Q49 V45
Posts: 168
Kudos: 431
 [1]
1
Kudos
Add Kudos
Bookmarks
Bookmark this Post
The question stem is weirdly worded.

Quote:
To translate a number from binary, multiply the nth digit (reading from right to left) by 2^(n-1)

Okay, and then what? You should clarify that you should then sum those results to get the number in base 10.
User avatar
KarishmaB
Joined: 16 Oct 2010
Last visit: 27 Mar 2025
Posts: 15,835
Own Kudos:
Given Kudos: 461
Location: Pune, India
Expert
Expert reply
Active GMAT Club Expert! Tag them with @ followed by their username for a faster response.
Posts: 15,835
Kudos: 72,330
Kudos
Add Kudos
Bookmarks
Bookmark this Post
pankajvashist
Binary Divison can provide a quick answer if you are comfortable with it.

as option E is the biggest binary number we try with it first :

100010000/ 10001 =10000

1000100000/ 10001 =100000

so answer is option is E


Note that you are missing out on an important aspect in this method. You need the largest prime number. You need to verify that 10001 is prime.
User avatar
RDhin
Joined: 26 Nov 2015
Last visit: 03 Apr 2018
Posts: 27
Own Kudos:
Given Kudos: 5
Posts: 27
Kudos: 55
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Bunuel
Every digit of a number written in binary is either 0 or 1. To translate a number from binary, multiply the nth digit (reading from right to left) by 2^(n-1)

What is the largest prime number (written in binary) that is a factor of both 100010000 and 1000100000 ?

(A) 10
(B) 11
(C) 101
(D) 1011
(E) 10001

Kudos for a correct solution.

Seems that this post is already well discussed, but let me given by approach

Firstly Binary is beautiful concept, Here Indexing plays a important role while extracting or converting numbers from binary to decimal

Let me index it first

1. 100010000

10 9 8 7 6 5 4 3 2 1 0

-0 0 1 0 0 0 1 0 0 0 0

That index is raised to power of 2 while computing Decimal = 2^8*1 + 2^0*1 = 256+16 = 272


2. 1000100000

10 9 8 7 6 5 4 3 2 1 0

-0 1 0 0 0 1 0 0 0 0 0

That index is raised to power of 2 while computing Decimal = 2^9*1 + 2^1*1 = 512 +32 = 544


As numbers are multiple of each other with a factor two 272*2 = 544

So the factors of 272 = {2,2,2,2,17}
largest prime is 17



Now converting decimal into binary
Index is raised to power two then we get the numbers
- 5 4 3 2 1 0 == index
- 32 16 8 4 2 1 == Raise to power the index
- 0 1 0 0 0 1 == 17


So answer is E 10001

----

One more thing numbers 100010000 & 1000100000 are in relation with each other as in binary when a digit is moved right ways (as 1 changed its index from 8 to 9 & from 4 to 5) it gets multiplied by 2 in decimal & when a digit is moved left ways it gets divided by 2 in decimal
User avatar
CKHE
Joined: 11 Mar 2019
Last visit: 02 Jan 2025
Posts: 95
Own Kudos:
Given Kudos: 199
Location: India
GMAT 1: 720 Q49 V39
GMAT 2: 690 Q49 V36
GMAT 2: 690 Q49 V36
Posts: 95
Kudos: 82
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Hi Bunuel
I believe the question is incomplete. After mentioning multiplication by 2^(n-1), it needs to mention that 0/1 *2^(n-1) needs to be added for each digit. If I do not know / remember binary to integer conversion, I wont be able to solve this question.

Thanks,
Bunuel
Every digit of a number written in binary is either 0 or 1. To translate a number from binary, multiply the nth digit (reading from right to left) by 2^(n-1)

What is the largest prime number (written in binary) that is a factor of both 100010000 and 1000100000 ?

(A) 10
(B) 11
(C) 101
(D) 1011
(E) 10001

Kudos for a correct solution.
­
User avatar
TheVDR
Joined: 09 Jun 2023
Last visit: 28 Mar 2025
Posts: 254
Own Kudos:
Given Kudos: 20
Location: India
Posts: 254
Kudos: 205
Kudos
Add Kudos
Bookmarks
Bookmark this Post
Question does not describe, at all, that digits should be added. For all I can understand, the first number is 256000160000. Where exactly am I told that 256 and 16 should be added?
User avatar
Thuytran2608
Joined: 23 Mar 2024
Last visit: 27 Mar 2025
Posts: 2
Own Kudos:
Given Kudos: 2
Location: Viet Nam
Posts: 2
Kudos: 1
Kudos
Add Kudos
Bookmarks
Bookmark this Post
100010000=10^8+10^4=10^4*(10^4+1)
1000100000 =10^9+10^5=10^5*(10^4+1)
=> The largest common factor = 10^4+1=10001 (prime number)=> answer E
User avatar
Vibhatu
Joined: 18 May 2021
Last visit: 27 Mar 2025
Posts: 142
Own Kudos:
Given Kudos: 167
Posts: 142
Kudos: 34
Kudos
Add Kudos
Bookmarks
Bookmark this Post
TheVDR
Question does not describe, at all, that digits should be added. For all I can understand, the first number is 256000160000. Where exactly am I told that 256 and 16 should be added?
I totally agree with you. Bunuel can you please confirm it and please provide an example of how to convert binary. this will be helpful during exam.
Moderators:
Math Expert
100116 posts
PS Forum Moderator
519 posts