There is a number a , which can be written as x y z in base 9 and z y x in base 6, for some positive integer x , y , z . Find x + y + z .
Details and Assumption
x y z represents reading the digits together, instead of multiplying them out. For example, x y z 9 = 8 1 x + 9 y + z and z y x 6 = 3 6 z + 6 y + x .
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.
'for some positive integer x,y,z'.Actually,y can't be 0
81x+9y+z=36z+6y+x . and since these numbers are used in the base 6 number and the base 9 number, 0<= x,y,z <= 5 . 80x+3y-35z=0 . x cant be zero because that would make xyz a two digit number. and z cant be zero because zyx would be a two digit number. if x=1, 80+3y-35z=0 . 3y=35z-80 . since 3y>=0, 35z>=80 . so z>=3 and 35z-80>=25 . but then 3y>=25 so y>=9 but y has to be less than or equal to 5, so that doesnt work, therefore x isnt equal to 1 . if x=2, 160+3y-35z=0 . 3y=35z-160 . again, since 3y>=0, 35z>=160 . so z>= 5. The only z that works which is greater than or equal to 5 is 5 itself, since each digit had to be between 0 and 5 inclusive. this means that z=5 . so 3y=35*5-160 . 3y=175-160 . 3y=15 . y=5 . therefore if x=2, y=5, and z=5 . you can try the rest for when x=3,4, and 5 and see they don't work. so the answer is 2+5+5=12 .
81x+9y+1z=36z+6y+1x
80x+3y=35z
X=3 Y=5 Z=5
why is bar on x yand z
Log in to reply
The bar represents a 3-digit number here. I have also rephrased the question for you please check it now if you still face some problem related to the topic please see this or feel free to ask me.
I do not know also
Log in to reply
how do you write 81x+9y+1z=36z+6y+1x ???????
Log in to reply
@Rishabh Deep Singh – 9^2x+9^1y+9^0z=6^2z+6^1y+6^0x
Did you just start keeping values for fun or actually solved it using algebraic method?
Log in to reply
there are no methods in maths its just your brain which develops so called methods
The smalest base is 6 so 0<=x,yz<=5. Since 80x and 35z are multiples of 5, 3y must be a multiple of 5 so y=5 and we have 16x+3=7z. Same way 16x+3 must be a multiple of 7 so 16x=3 (mod7) or 2x=3 (mod7) which give us x=2. 32+3=7z so z=5. Resume: x=2; y=5; z=5; x+y+z=12
There's also 0. Because 0 = 0
Problem Loading...
Note Loading...
Set Loading...
8 1 x + 9 y + z = 3 6 z + 6 y + x ⇒ 8 0 x + 3 y = 3 5 z ⇒ 3 5 ∣ ( 8 0 x + 3 y ) ⇒ 5 ∣ ( 8 0 x + 3 y )
(where a ∣ b means that b is divisible by a ).
Since 5 ∣ 8 0 x , it must be the case that 5 ∣ 3 y , so 5 ∣ y . Since 0 ≤ y ≤ 9 , we have y = 0 or y = 5 .
If y = 0 :
3 5 ∣ 8 0 x ⇒ 7 ∣ 8 0 x ⇒ 7 ∣ x ⇒ x = 7
But this would mean z = 1 6 , which is impossible since it must be a single digit.
If y = 5 :
3 5 ∣ ( 8 0 x + 1 5 ) ⇒ 7 ∣ ( 8 0 x + 1 5 ) ⇒ 8 0 x + 1 5 = 0 ( m o d 7 ) ⇒ 8 0 ( m o d 7 ) ⋅ x + 1 5 ( m o d 7 ) = 0 ⇒ 3 x + 1 = 0 ( m o d 7 ) ⇒ x = 2
Substituting into either of the original equations gives us z = 5 , and indeed we can verify that 2 5 5 9 = 5 5 2 6 . Hence x + y + z = 1 2 .