Do the Math!
Try to solve this puzzle:
Apparently only people with an IQ over 120 are able to figure it out. Keep your brain active and think about it.
If:
2+3=10
7+2=63
6+5=66
8+4=96
Then 9+7=???
It's not that bad but you have to think about it. And no, it's not a joke or an unanswerable question. Good luck!
Apparently only people with an IQ over 120 are able to figure it out. Keep your brain active and think about it.
If:
2+3=10
7+2=63
6+5=66
8+4=96
Then 9+7=???
It's not that bad but you have to think about it. And no, it's not a joke or an unanswerable question. Good luck!
Same here. It took me 45 seconds to figure it out, which is probably much slower than you brainiacs.
Oh, I left out an hour.
Oh, I left out an hour.
Last edited by grip grip; Jul 12, 2013 at 04:30 PM.
Mark ... does this mean your brain is fried trying to figure it out. I'd be willing to PM you about how its done..... don't want to spill the beans here... LOL
144....
And here's the formula...
$result = $a * ($a + $b);
if we want to make it a loop out put...using php for example...
Then the list of results you can pick from?
10 + 0 = 100
10 + 1 = 110
10 + 2 = 120
10 + 3 = 130
10 + 4 = 140
10 + 5 = 150
10 + 6 = 160
10 + 7 = 170
10 + 8 = 180
10 + 9 = 190
9 + 0 = 81
9 + 1 = 90
9 + 2 = 99
9 + 3 = 108
9 + 4 = 117
9 + 5 = 126
9 + 6 = 135
9 + 7 = 144
9 + 8 = 153
9 + 9 = 162
8 + 0 = 64
8 + 1 = 72
8 + 2 = 80
8 + 3 = 88
8 + 4 = 96
8 + 5 = 104
8 + 6 = 112
8 + 7 = 120
8 + 8 = 128
8 + 9 = 136
7 + 0 = 49
7 + 1 = 56
7 + 2 = 63
7 + 3 = 70
7 + 4 = 77
7 + 5 = 84
7 + 6 = 91
7 + 7 = 98
7 + 8 = 105
7 + 9 = 112
6 + 0 = 36
6 + 1 = 42
6 + 2 = 48
6 + 3 = 54
6 + 4 = 60
6 + 5 = 66
6 + 6 = 72
6 + 7 = 78
6 + 8 = 84
6 + 9 = 90
5 + 0 = 25
5 + 1 = 30
5 + 2 = 35
5 + 3 = 40
5 + 4 = 45
5 + 5 = 50
5 + 6 = 55
5 + 7 = 60
5 + 8 = 65
5 + 9 = 70
4 + 0 = 16
4 + 1 = 20
4 + 2 = 24
4 + 3 = 28
4 + 4 = 32
4 + 5 = 36
4 + 6 = 40
4 + 7 = 44
4 + 8 = 48
4 + 9 = 52
3 + 0 = 9
3 + 1 = 12
3 + 2 = 15
3 + 3 = 18
3 + 4 = 21
3 + 5 = 24
3 + 6 = 27
3 + 7 = 30
3 + 8 = 33
3 + 9 = 36
2 + 0 = 4
2 + 1 = 6
2 + 2 = 8
2 + 3 = 10
2 + 4 = 12
2 + 5 = 14
2 + 6 = 16
2 + 7 = 18
2 + 8 = 20
2 + 9 = 22
1 + 0 = 1
1 + 1 = 2
1 + 2 = 3
1 + 3 = 4
1 + 4 = 5
1 + 5 = 6
1 + 6 = 7
1 + 7 = 8
1 + 8 = 9
1 + 9 = 10
And here's the formula...
$result = $a * ($a + $b);
if we want to make it a loop out put...using php for example...
PHP Code:
<?php
$a = 10;
while ($a != 0):
$b=0;
while ($b != 10):
$result = $a * ($a + $b);
echo ( $a . ' + ' . $b . ' = ' . $result . "<br />");
$b++;
endwhile;
$a--;
endwhile;
?>
10 + 0 = 100
10 + 1 = 110
10 + 2 = 120
10 + 3 = 130
10 + 4 = 140
10 + 5 = 150
10 + 6 = 160
10 + 7 = 170
10 + 8 = 180
10 + 9 = 190
9 + 0 = 81
9 + 1 = 90
9 + 2 = 99
9 + 3 = 108
9 + 4 = 117
9 + 5 = 126
9 + 6 = 135
9 + 7 = 144
9 + 8 = 153
9 + 9 = 162
8 + 0 = 64
8 + 1 = 72
8 + 2 = 80
8 + 3 = 88
8 + 4 = 96
8 + 5 = 104
8 + 6 = 112
8 + 7 = 120
8 + 8 = 128
8 + 9 = 136
7 + 0 = 49
7 + 1 = 56
7 + 2 = 63
7 + 3 = 70
7 + 4 = 77
7 + 5 = 84
7 + 6 = 91
7 + 7 = 98
7 + 8 = 105
7 + 9 = 112
6 + 0 = 36
6 + 1 = 42
6 + 2 = 48
6 + 3 = 54
6 + 4 = 60
6 + 5 = 66
6 + 6 = 72
6 + 7 = 78
6 + 8 = 84
6 + 9 = 90
5 + 0 = 25
5 + 1 = 30
5 + 2 = 35
5 + 3 = 40
5 + 4 = 45
5 + 5 = 50
5 + 6 = 55
5 + 7 = 60
5 + 8 = 65
5 + 9 = 70
4 + 0 = 16
4 + 1 = 20
4 + 2 = 24
4 + 3 = 28
4 + 4 = 32
4 + 5 = 36
4 + 6 = 40
4 + 7 = 44
4 + 8 = 48
4 + 9 = 52
3 + 0 = 9
3 + 1 = 12
3 + 2 = 15
3 + 3 = 18
3 + 4 = 21
3 + 5 = 24
3 + 6 = 27
3 + 7 = 30
3 + 8 = 33
3 + 9 = 36
2 + 0 = 4
2 + 1 = 6
2 + 2 = 8
2 + 3 = 10
2 + 4 = 12
2 + 5 = 14
2 + 6 = 16
2 + 7 = 18
2 + 8 = 20
2 + 9 = 22
1 + 0 = 1
1 + 1 = 2
1 + 2 = 3
1 + 3 = 4
1 + 4 = 5
1 + 5 = 6
1 + 6 = 7
1 + 7 = 8
1 + 8 = 9
1 + 9 = 10
Last edited by kuratsunade; Jul 29, 2013 at 09:45 AM.
Thread
Thread Starter
Forum
Replies
Last Post
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)




