#21 - Relationship Numbers Riddle

Can you replace the question mark with the correct number, given the pair of numbers exhibits similar relationship?

? : 3839 :: 11 : 1209

16

Formular used :
pow(x,3) - pow(x,2) - 1
11*11*11 - 11*11 - 1
1331 - 121 - 1
1209

Similarly, we can solve
pow($x,3) - pow($x,2) - 1 = 3839
This condition holds true for number-16.

#22 - Good Missing Number Series

Can you find the missing number in the series below

1 5 9 2 6 10 3 ? 11 4 8 12

7

Series given in the problem :
1 5 9 2 6 10 3 ? 11 4 8 12
Let us break the series as :
1 5 9
2 6 10
3 ? 11
4 8 12

Now, read the numbers from left, top to bottom. The missing number is obviously 7.

#23 - Hard Number 100 Riddle

By using all numbers, i.e. 123456789 and subtraction/addition, operators number 100 can be formed in many ways.
Example 98 + 7 + 6 - 5 - 4 - 3 + 2 - 1 = 100

But if we add a condition that use of the number 32 is the must. Then there are limited solutions.
One of such solution is: 9 - 8 + 76 + 54 - 32 + 1 = 100

Can you tell any other solution?

9 - 8 + 7 + 65 - 4 + 32 - 1 = 100
9 - 8 + 76 + 54 - 32 + 1 = 100

Other ways of making number 100 (withiout using number 32)
98 + 7 + 6 - 5 - 4 - 3 + 2 - 1 = 100
98 - 7 - 6 - 5 - 4 + 3 + 21 = 100
9 - 8 + 76 - 5 + 4 + 3 + 21 = 100
98 - 7 + 6 + 5 + 4 - 3 - 2 - 1 = 100
98 + 7 - 6 + 5 - 4 + 3 - 2 - 1 = 100
98 + 7 - 6 + 5 - 4 - 3 + 2 + 1 = 100
98 - 7 + 6 + 5 - 4 + 3 - 2 + 1 = 100
98 - 7 + 6 - 5 + 4 + 3 + 2 - 1 = 100
98 + 7 - 6 - 5 + 4 + 3 - 2 + 1 = 100
98 - 7 - 6 + 5 + 4 + 3 + 2 + 1 = 100
9 + 8 + 76 + 5 + 4 - 3 + 2 - 1 = 100
9 + 8 + 76 + 5 - 4 + 3 + 2 + 1 = 100

#24 - Hard Missing Number Series

Can you complete below number series by replacing "?" with the correct number.

10 # 10 # 20 # ? # 110 # 300 # 930

45

Pattern goes like
10
10 * 0.5 + 5 => 10
10 * 1.0
+ 10 => 20
20 * 1.5 + 15 => 45(Ans)
45 * 2.0 + 20 => 110
110 * 2.5 + 25 => 300
300 * 3.0 + 30 => 930

#25 - Complete The Numeric Sequence Puzzle

Complete the numerical sequence by replacing the question mark with the correct numbers.

5+3+2 = 151022
9+2+4 = 183652
8+6+3 = 482466
5+4+5 = 202541
9+5+5 = ??????

454585

Series if formed as (a*b)(b*c)(c*a)
(9*5)(9*5)(9*5+9*5-5) => 454585

#26 - Upsc Picture Series Puzzle

Can you solve below logical number series puzzle.

Upsc Picture Series Puzzle

11.3135 + 9.3115+ 9.375

#27 - Math Pyramid Puzzle

You need to solve the below maths pyramid puzzle by replacing question mark with the perfect numbers.

168
12 14
? 2 ?
? 2 1 ?

A number if formed by multiplying two numbers below it.

168
12 14
6 2 7
3 2 1 7

#28 - Which number replace question mark in th

Which number replace question mark in the series?

16 8 40 20 100 50 250 ? 625

16 8 40 20 100 50 250 ? 625

125
Explanation: (alternate series of /2 and &5)
16/2 = 8
8 * 5 = 40
40/2 = 20
20 * 5 = 100
100/2 = 50
50 * 5 = 250
250/2 = 125
125 * 5 = 625

#29 - Replace Question Mark Riddle

Can you find out the number that should replace the question mark with a valid reason?

Replace Question Mark Riddle

The number that will replace the question mark is 0. This is because, in this number pie, the diagonals add up to 25.

#30 - Next Number Series Riddle

Which number comes next in the number series?

2, 9, 30, 93, ?

282

Explanation:
It is a Number*3 + 3

2 x 3 + 3 = 9
9 x 3 + 3 = 30
30 x 3 + 3 = 93
93 x 3 + 3 = 282.