Can't factor this

738 738 can be written as a + a a + a a a \overline{a}+\overline{aa}+\overline{aaa} . If 6 a = 9 b 6a = 9b , find b b .

Details and Assumptions

The line above a number indicates the concatenation of integers. For example, if c = 5 , d = 7 , e = 9 c= 5,d=7,e=9 , then c d e = 579 \overline{cde} = 579 .


The answer is 4.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

8 solutions

738 = a + ( 10 a + a ) + ( 100 a + 10 a + a ) = 123 a = 123 9 b 6 738 = 369 2 b b = 4 738=a+\left( 10a+a \right) +\left( 100a+10a+a \right) =123a=123\frac { 9b }{ 6 } \Rightarrow 738=\frac { 369 }{ 2 } b\Rightarrow b=4

How did you get that equation 738=a+(10a+a)=(100a+10a+a) ?

pruthvi sunku - 6 years, 2 months ago

Log in to reply

From the equation given in problem 738 = a + a a + a a a 738 = \overline{a} + \overline{aa} + \overline{aaa} The definition of a decimal representation of a number gives a + a a + a a a = 123 × a \overline{a} + \overline{aa} + \overline{aaa} = 123\times a

Caleb Townsend - 6 years, 2 months ago

I don't understand your question a ˉ + a a ˉ + a a a ˉ = ( a ) + ( 10 a + a ) + ( 100 a + 10 a + a ) \bar { a } +\bar { aa } +\bar { aaa } =\left( a \right) +\left( 10a+a \right) +\left( 100a+10a+a \right)

Félix de Montemar - 6 years, 2 months ago
Paulo Carlos
Mar 25, 2015

A number which is finished by 8 8 needs a number a a where 3 a 3a is also finished by 8 8 , because a + a + a = 8 a + a + a = 8 . A number that fits in these circumstances is the 6 6 .

So: 6 + 66 + 666 = 738 6 + 66 + 666 = 738

To find b, just calculate the expression 6 × 6 = 9 b 6 \times 6 = 9b Then, the answer is b = 4 b = \boxed {4}

Brock Brown
Mar 23, 2015

Python 2.7:

1
2
3
4
5
6
7
8
def goal(a):
    return a + int(str(a)*2)\
       + int(str(a)*3) == 738
a = 0
while not goal(a):
    a += 1
b = (6*a)/9.0
print "Answer:", b

Nice code, but I would just think this one through.

David Holcer - 6 years, 2 months ago

Log in to reply

Yeah, I know, my first instinct as a programmer is always brute force though.

Brock Brown - 6 years, 2 months ago
T Sidharth
Mar 26, 2015

a a a ˉ = 100 a + 10 a + a a a ˉ = 10 a + a a ˉ = a \bar { aaa } =100a+10a+a\\ \bar { aa } =10a+a\\ \bar { a } =a

We have :

a a a ˉ + a a ˉ + a ˉ = 738 \bar { aaa } +\bar { aa } +\bar { a } =738

Rewriting

100 a + 10 a + a + 10 a + a + = 738 123 a = 738 a = 738 123 = 6 100a+10a+a\quad +10a+a+=738\\ \\ \therefore 123\quad a\quad =738\\ a\quad =\quad \frac { 738 }{ 123 } =6

Finally: 6 a = 9 b a = 9 6 b 6 = 9 / 6 b b = 6 × 6 9 = 4 6a\quad =\quad 9b\\ \\ a\quad =\frac { 9 }{ 6 } b\\ \\ 6=\quad 9/6b\\ \\ b=\quad \frac { 6\times 6 }{ 9 } =4\\

Noel Lo
Mar 25, 2015

It can be seen that 738 = a+11a+111a = 123a. So a= 738 123 \frac{738}{123} = 6. Now we have 9b = 6(6) = 36 so b= 36 9 \frac{36}{9} = 4 yay.

Obviously a < 7 otherwise the concatenation of aaa would be 777>738.

Plus we know that a+a+a = 8 (the last number of 738). Adding this info to the precedent gives us one solution: a = 6. Then b = 4.

Anthony Stewart
Mar 28, 2015

Trivial to see that: 0 <= aa + a < 109 < 138

Therefore, 738 >= aaa > 600, hence a = 6 and b = 4.

No need for any equations :)

Aditya Paul
Mar 28, 2015

You really don't need to do the sum to get the answer. which number multiplied by 3 ends with 8 , its 6 you can check. 6+66+666=738. Now 6 6=9 b, so b= 4. Now you may call me crooked but well you have the answer.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...