Announcement
Collapse
No announcement yet.
Mind Games
Collapse
Forum Thread First Post
Collapse
X
-
Originally posted by FishPOET View Post
SPOOKY.....[CENTER][COLOR=#ff0000]Resistance Off Road
[/COLOR]Join the Resistance...
http://www.resistanceoffroad.us[/CENTER]
-
There are only so many possible answers, and they all have the same symbol each time. I believe the only possible answers are multiples of 9.
9, 18, 27, 36, 45, 54, 63, 72, 81
and if you look at those numbers they all have the same symbol
but the symbols are different every time you say??
look at the chart agian. the program changes the symbols on those numbers every timeJust trying to get to Cali!
Comment
-
Originally posted by KNCJeeper View PostThere are only so many possible answers, and they all have the same symbol each time. I believe the only possible answers are multiples of 9.
9, 18, 27, 36, 45, 54, 63, 72, 81
and if you look at those numbers they all have the same symbol
but the symbols are different every time you say??
look at the chart agian. the program changes the symbols on those numbers every time
Since I'm a nerd, I wrote a python program showing exactly that... here's the output:
[code]
for num in range(10, 100):
print str(num) + " ==> " + str(num) + " - ( " + str(num)[0] + " + " + str(nu
m)[1] + " ) = " + str(num - int(str(num)[0]) + int(str(num)[1]))
[/code]
10 ==> 10 - ( 1 + 0 ) = 9
11 ==> 11 - ( 1 + 1 ) = 9
12 ==> 12 - ( 1 + 2 ) = 9
13 ==> 13 - ( 1 + 3 ) = 9
14 ==> 14 - ( 1 + 4 ) = 9
15 ==> 15 - ( 1 + 5 ) = 9
16 ==> 16 - ( 1 + 6 ) = 9
17 ==> 17 - ( 1 + 7 ) = 9
18 ==> 18 - ( 1 + 8 ) = 9
19 ==> 19 - ( 1 + 9 ) = 9
20 ==> 20 - ( 2 + 0 ) = 18
21 ==> 21 - ( 2 + 1 ) = 18
22 ==> 22 - ( 2 + 2 ) = 18
23 ==> 23 - ( 2 + 3 ) = 18
24 ==> 24 - ( 2 + 4 ) = 18
25 ==> 25 - ( 2 + 5 ) = 18
26 ==> 26 - ( 2 + 6 ) = 18
27 ==> 27 - ( 2 + 7 ) = 18
28 ==> 28 - ( 2 + 8 ) = 18
29 ==> 29 - ( 2 + 9 ) = 18
30 ==> 30 - ( 3 + 0 ) = 27
31 ==> 31 - ( 3 + 1 ) = 27
32 ==> 32 - ( 3 + 2 ) = 27
33 ==> 33 - ( 3 + 3 ) = 27
34 ==> 34 - ( 3 + 4 ) = 27
35 ==> 35 - ( 3 + 5 ) = 27
36 ==> 36 - ( 3 + 6 ) = 27
37 ==> 37 - ( 3 + 7 ) = 27
38 ==> 38 - ( 3 + 8 ) = 27
39 ==> 39 - ( 3 + 9 ) = 27
40 ==> 40 - ( 4 + 0 ) = 36
41 ==> 41 - ( 4 + 1 ) = 36
42 ==> 42 - ( 4 + 2 ) = 36
43 ==> 43 - ( 4 + 3 ) = 36
44 ==> 44 - ( 4 + 4 ) = 36
45 ==> 45 - ( 4 + 5 ) = 36
46 ==> 46 - ( 4 + 6 ) = 36
47 ==> 47 - ( 4 + 7 ) = 36
48 ==> 48 - ( 4 + 8 ) = 36
49 ==> 49 - ( 4 + 9 ) = 36
50 ==> 50 - ( 5 + 0 ) = 45
51 ==> 51 - ( 5 + 1 ) = 45
52 ==> 52 - ( 5 + 2 ) = 45
53 ==> 53 - ( 5 + 3 ) = 45
54 ==> 54 - ( 5 + 4 ) = 45
55 ==> 55 - ( 5 + 5 ) = 45
56 ==> 56 - ( 5 + 6 ) = 45
57 ==> 57 - ( 5 + 7 ) = 45
58 ==> 58 - ( 5 + 8 ) = 45
59 ==> 59 - ( 5 + 9 ) = 45
60 ==> 60 - ( 6 + 0 ) = 54
61 ==> 61 - ( 6 + 1 ) = 54
62 ==> 62 - ( 6 + 2 ) = 54
63 ==> 63 - ( 6 + 3 ) = 54
64 ==> 64 - ( 6 + 4 ) = 54
65 ==> 65 - ( 6 + 5 ) = 54
66 ==> 66 - ( 6 + 6 ) = 54
67 ==> 67 - ( 6 + 7 ) = 54
68 ==> 68 - ( 6 + 8 ) = 54
69 ==> 69 - ( 6 + 9 ) = 54
70 ==> 70 - ( 7 + 0 ) = 63
71 ==> 71 - ( 7 + 1 ) = 63
72 ==> 72 - ( 7 + 2 ) = 63
73 ==> 73 - ( 7 + 3 ) = 63
74 ==> 74 - ( 7 + 4 ) = 63
75 ==> 75 - ( 7 + 5 ) = 63
76 ==> 76 - ( 7 + 6 ) = 63
77 ==> 77 - ( 7 + 7 ) = 63
78 ==> 78 - ( 7 + 8 ) = 63
79 ==> 79 - ( 7 + 9 ) = 63
80 ==> 80 - ( 8 + 0 ) = 72
81 ==> 81 - ( 8 + 1 ) = 72
82 ==> 82 - ( 8 + 2 ) = 72
83 ==> 83 - ( 8 + 3 ) = 72
84 ==> 84 - ( 8 + 4 ) = 72
85 ==> 85 - ( 8 + 5 ) = 72
86 ==> 86 - ( 8 + 6 ) = 72
87 ==> 87 - ( 8 + 7 ) = 72
88 ==> 88 - ( 8 + 8 ) = 72
89 ==> 89 - ( 8 + 9 ) = 72
90 ==> 90 - ( 9 + 0 ) = 81
91 ==> 91 - ( 9 + 1 ) = 81
92 ==> 92 - ( 9 + 2 ) = 81
93 ==> 93 - ( 9 + 3 ) = 81
94 ==> 94 - ( 9 + 4 ) = 81
95 ==> 95 - ( 9 + 5 ) = 81
96 ==> 96 - ( 9 + 6 ) = 81
97 ==> 97 - ( 9 + 7 ) = 81
98 ==> 98 - ( 9 + 8 ) = 81
99 ==> 99 - ( 9 + 9 ) = 81If we aren't supposed to eat animals, then why are they made out of meat?
http://jeep.matandtiff.com/
Truth is treason in the empire of lies. -Ron Paul
Comment
-
Originally posted by Materdaddy View PostHa, you found it! I was doing the math in my head and looking at that as well.
Since I'm a nerd, I wrote a python program showing exactly that... here's the output:
[code]
for num in range(10, 100):
print str(num) + " ==> " + str(num) + " - ( " + str(num)[0] + " + " + str(nu
m)[1] + " ) = " + str(num - int(str(num)[0]) + int(str(num)[1]))
[/code]
10 ==> 10 - ( 1 + 0 ) = 9
11 ==> 11 - ( 1 + 1 ) = 9
12 ==> 12 - ( 1 + 2 ) = 9
13 ==> 13 - ( 1 + 3 ) = 9
14 ==> 14 - ( 1 + 4 ) = 9
15 ==> 15 - ( 1 + 5 ) = 9
16 ==> 16 - ( 1 + 6 ) = 9
17 ==> 17 - ( 1 + 7 ) = 9
18 ==> 18 - ( 1 + 8 ) = 9
19 ==> 19 - ( 1 + 9 ) = 9
20 ==> 20 - ( 2 + 0 ) = 18
21 ==> 21 - ( 2 + 1 ) = 18
22 ==> 22 - ( 2 + 2 ) = 18
23 ==> 23 - ( 2 + 3 ) = 18
24 ==> 24 - ( 2 + 4 ) = 18
25 ==> 25 - ( 2 + 5 ) = 18
26 ==> 26 - ( 2 + 6 ) = 18
27 ==> 27 - ( 2 + 7 ) = 18
28 ==> 28 - ( 2 + 8 ) = 18
29 ==> 29 - ( 2 + 9 ) = 18
30 ==> 30 - ( 3 + 0 ) = 27
31 ==> 31 - ( 3 + 1 ) = 27
32 ==> 32 - ( 3 + 2 ) = 27
33 ==> 33 - ( 3 + 3 ) = 27
34 ==> 34 - ( 3 + 4 ) = 27
35 ==> 35 - ( 3 + 5 ) = 27
36 ==> 36 - ( 3 + 6 ) = 27
37 ==> 37 - ( 3 + 7 ) = 27
38 ==> 38 - ( 3 + 8 ) = 27
39 ==> 39 - ( 3 + 9 ) = 27
40 ==> 40 - ( 4 + 0 ) = 36
41 ==> 41 - ( 4 + 1 ) = 36
42 ==> 42 - ( 4 + 2 ) = 36
43 ==> 43 - ( 4 + 3 ) = 36
44 ==> 44 - ( 4 + 4 ) = 36
45 ==> 45 - ( 4 + 5 ) = 36
46 ==> 46 - ( 4 + 6 ) = 36
47 ==> 47 - ( 4 + 7 ) = 36
48 ==> 48 - ( 4 + 8 ) = 36
49 ==> 49 - ( 4 + 9 ) = 36
50 ==> 50 - ( 5 + 0 ) = 45
51 ==> 51 - ( 5 + 1 ) = 45
52 ==> 52 - ( 5 + 2 ) = 45
53 ==> 53 - ( 5 + 3 ) = 45
54 ==> 54 - ( 5 + 4 ) = 45
55 ==> 55 - ( 5 + 5 ) = 45
56 ==> 56 - ( 5 + 6 ) = 45
57 ==> 57 - ( 5 + 7 ) = 45
58 ==> 58 - ( 5 + 8 ) = 45
59 ==> 59 - ( 5 + 9 ) = 45
60 ==> 60 - ( 6 + 0 ) = 54
61 ==> 61 - ( 6 + 1 ) = 54
62 ==> 62 - ( 6 + 2 ) = 54
63 ==> 63 - ( 6 + 3 ) = 54
64 ==> 64 - ( 6 + 4 ) = 54
65 ==> 65 - ( 6 + 5 ) = 54
66 ==> 66 - ( 6 + 6 ) = 54
67 ==> 67 - ( 6 + 7 ) = 54
68 ==> 68 - ( 6 + 8 ) = 54
69 ==> 69 - ( 6 + 9 ) = 54
70 ==> 70 - ( 7 + 0 ) = 63
71 ==> 71 - ( 7 + 1 ) = 63
72 ==> 72 - ( 7 + 2 ) = 63
73 ==> 73 - ( 7 + 3 ) = 63
74 ==> 74 - ( 7 + 4 ) = 63
75 ==> 75 - ( 7 + 5 ) = 63
76 ==> 76 - ( 7 + 6 ) = 63
77 ==> 77 - ( 7 + 7 ) = 63
78 ==> 78 - ( 7 + 8 ) = 63
79 ==> 79 - ( 7 + 9 ) = 63
80 ==> 80 - ( 8 + 0 ) = 72
81 ==> 81 - ( 8 + 1 ) = 72
82 ==> 82 - ( 8 + 2 ) = 72
83 ==> 83 - ( 8 + 3 ) = 72
84 ==> 84 - ( 8 + 4 ) = 72
85 ==> 85 - ( 8 + 5 ) = 72
86 ==> 86 - ( 8 + 6 ) = 72
87 ==> 87 - ( 8 + 7 ) = 72
88 ==> 88 - ( 8 + 8 ) = 72
89 ==> 89 - ( 8 + 9 ) = 72
90 ==> 90 - ( 9 + 0 ) = 81
91 ==> 91 - ( 9 + 1 ) = 81
92 ==> 92 - ( 9 + 2 ) = 81
93 ==> 93 - ( 9 + 3 ) = 81
94 ==> 94 - ( 9 + 4 ) = 81
95 ==> 95 - ( 9 + 5 ) = 81
96 ==> 96 - ( 9 + 6 ) = 81
97 ==> 97 - ( 9 + 7 ) = 81
98 ==> 98 - ( 9 + 8 ) = 81
99 ==> 99 - ( 9 + 9 ) = 81
Gees buddy...you went way more into depth that i didJust trying to get to Cali!
Comment
-
Originally posted by sarah View PostMat is our official resident nerd
this message has been approved by the church of briantology.
If we aren't supposed to eat animals, then why are they made out of meat?
http://jeep.matandtiff.com/
Truth is treason in the empire of lies. -Ron Paul
Comment
Comment