1 2 , 3 3 , 6 6 , 1 3 2 , 3 6 3 , ?
Find the number that can replace the question mark in the above sequence.
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.
nice thinking (y)
We can also find it by multiplying each no by 11.
The product is the third number from it.
12 * 11=132
33 * 11=363
66 * 11=726
For me I realised that from 33 to 66 and 132, we are simply doubling the numbers. But from 12 to 33 and from 132 to 363, we are multiplying the previous number by 11/4 to get the next number. We only do this once every three numbers so when we reach 363, we should double it to get 726.
I did this, too! I wonder if the sequence might be expressed in mathematical notation.
Nice! This is an innovative method :)
my way was probably just luck but 12*2.75 = 33
33*2 = 66
66*2 = 132
132*2.75 = 363
363*2 = 726
so basically you multiply the first time by 2.75 then you multiply the next 2 numbers by 2 and you repeat the pattern
Given no + reversing no =2nd no., 2nd no = reversing no = 3rdno. Thus 363 + 363 = 726
2nd no + Reversing no = 3rd
First number = 12
Second number = (1+2) * 10 + (1+2) = 33
Third number = (3+3) * 10 + (3+3) = 66
Forth number = (6+6) * 10 + (6+6) = 132
Fifth number = (1+32) * 10 + (1+32) = 363
Sixth number = (3+63) * 10 + (3+63) = 726
Answer = 726
Follow the steps of algorithm 196. The algorithm says that if you reverse a number and add it to the original number, it is the fastest method to produce palindromic numbers. The name comes because this stage hasn't been reached for the number 196 ever after iterating the above steps a million of times.
What is algorithm 196?
Log in to reply
The algorithm says that if you reverse a number and add it to the original number, it is the fastest method to produce palindromic numbers. The name comes because this stage hasn't been reached for the number 196 ever after iterating the above steps a million of times.
Log in to reply
Can you add that explanation into your solution? That would help others who haven't seen it before (Esp those who don't know how to solve the problem) understand what your solution means.
I'm quite impressed with the number of ways to solve this!
I thought the pattern was:
Times by three, detract three
Times by two three times
Times by three and subtract thirty three...
times by two thirty three times
So on
But, all patterns are valid!
Add the reverse digits of each number to get the next one. So 12 + 21, etc.
12*1 = 12
33*1 = 33
66*1 = 66
12*11 = 132
33*11= 363
66*11 = 726
One can also use an interesting formula:
Double when digits are only 3s or 6s, otherwise, multiply by 3 and subtract 3.
However, this only work for the first few numbers, failing for 726+627=1353
Problem Loading...
Note Loading...
Set Loading...
The technique used here is: "Reverse the digits and add"
1 2 + 2 1 = 3 3 3 3 + 3 3 = 6 6 6 6 + 6 6 = 1 3 2 1 3 2 + 2 3 1 = 3 6 3 3 6 3 + 3 6 3 = 7 2 6