Page 4 of 4 [ 64 posts ]  Go to page Previous  1, 2, 3, 4

liveandrew
Velociraptor
Velociraptor

User avatar

Joined: 4 Oct 2016
Age: 56
Gender: Male
Posts: 479
Location: Cornwall, UK

30 Apr 2017, 7:09 am

liveandrew wrote:
liveandrew wrote:
Anon_92 wrote:
liveandrew wrote:
Can you decipher this?
43011000016e0010000079011011117500100000640110010163
0110100170011010006501110010200111010068011010017300111111


Yeah- it's meaningless numbers you randomly typed.

No, it isn't. I guess you can't do it. All the clues are there.

EDIT: I can give a clue if it's too hard?

It's actually pretty simple and you should, having as much knowledge as yourself, be able to solve it just using the patterns found in the string. Seeing as though you're finding it a little tough here's a clue: hexadecimal|binary=ascii. That should be all you need to solve it.

EDIT: amended the clue to make it even simpler.

Okay, so it should be relatively obvious that there is a pattern in the string: we have a series of numbers and a single letter; most of the numbers are either a 1 or a 0; the 1 or 0 parts seem to be 8 digits long; the non-0 and non-1 numbers seem to be 2 digits long. Using this information we can split the string to make it a little easier to work with:

43 01100001 6e 00100000 79 01101111 75 00100000 64 01100101 63 01101001 70 01101000 65 01110010 20 01110100 68 01101001 73 00111111

From this we can now infer that the series of 8 digits made up of 0 or 1 are probably binary (base 2). Also, the series 2 digits that can include non-0, non-1 and alphabetic characters are possibly hexadecimal (base 16). Although it is true that this second series may be another base greater than 10, but as hex is a common >10 base we'll stick with that until we can discard it if it doesn't work and use a different base. My clue actually does specify binary and hex to make this even simpler.

So, we have a sequence of numbers consisting of 8 digit binary and 2 digit (a letter is a digit in this instance) hexadecimal. The maximum number, in decimal (base 10) that can be specified with 8 digit binary (00000000 to 11111111) and 2 digit hex (00 to FF) is 255 (256 numbers, from from 0 to 255). What do we know that uses 256 characters? ASCII!

We can now convert the binary and hexadecimal to decimal. There are sites (http://www.binaryhexconverter.com) that will do this for you and most calculators will also do it:

43 01100001 6e 00100000 79 01101111 75 00100000 64 01100101 63 01101001 70 01101000 65 01110010 20 01110100 68 01101001 73 00111111

Becomes:

67 97 110 32 121 111 117 32 100 101 99 105 112 104 101 114 32 116 104 105 115 63

We can now convert this to ASCII. ASCII tables are available online (http://www.asciitable.com/). Actually, the step to convert hex and binary to decimal can really be ignored and we could convert directly from hex and binary to ASCII but how much fun would that be?

67 97 110 32 121 111 117 32 100 101 99 105 112 104 101 114 32 116 104 105 115 63
C a n y o u d e c i p h e r t h i s ?

Remove the spaces and you get the answer (and the question!):

Can you decipher this?

There is no real mathematics involved apart from knowledge of bases other than decimal.


_________________
Diagnosed: Asperger's Syndrome (ICD-10)
Self-Diagnosed: Aphantasia
Your neurodiverse (Aspie) score: 152 of 200
Your neurotypical (non-autistic) score: 46 of 200

Listener of all things noisy, viewer of all things bloody, writer of all things sh*t.


naturalplastic
Veteran
Veteran

User avatar

Joined: 26 Aug 2010
Age: 69
Gender: Male
Posts: 34,062
Location: temperate zone

30 Apr 2017, 7:32 am

liveandrew wrote:
liveandrew wrote:
liveandrew wrote:
Anon_92 wrote:
liveandrew wrote:
Can you decipher this?
43011000016e0010000079011011117500100000640110010163
0110100170011010006501110010200111010068011010017300111111


Yeah- it's meaningless numbers you randomly typed.

No, it isn't. I guess you can't do it. All the clues are there.

EDIT: I can give a clue if it's too hard?

It's actually pretty simple and you should, having as much knowledge as yourself, be able to solve it just using the patterns found in the string. Seeing as though you're finding it a little tough here's a clue: hexadecimal|binary=ascii. That should be all you need to solve it.

EDIT: amended the clue to make it even simpler.

Okay, so it should be relatively obvious that there is a pattern in the string: we have a series of numbers and a single letter; most of the numbers are either a 1 or a 0; the 1 or 0 parts seem to be 8 digits long; the non-0 and non-1 numbers seem to be 2 digits long. Using this information we can split the string to make it a little easier to work with:

43 01100001 6e 00100000 79 01101111 75 00100000 64 01100101 63 01101001 70 01101000 65 01110010 20 01110100 68 01101001 73 00111111

From this we can now infer that the series of 8 digits made up of 0 or 1 are probably binary (base 2). Also, the series 2 digits that can include non-0, non-1 and alphabetic characters are possibly hexadecimal (base 16). Although it is true that this second series may be another base greater than 10, but as hex is a common >10 base we'll stick with that until we can discard it if it doesn't work and use a different base. My clue actually does specify binary and hex to make this even simpler.

So, we have a sequence of numbers consisting of 8 digit binary and 2 digit (a letter is a digit in this instance) hexadecimal. The maximum number, in decimal (base 10) that can be specified with 8 digit binary (00000000 to 11111111) and 2 digit hex (00 to FF) is 255 (256 numbers, from from 0 to 255). What do we know that uses 256 characters? ASCII!

We can now convert the binary and hexadecimal to decimal. There are sites (http://www.binaryhexconverter.com) that will do this for you and most calculators will also do it:

43 01100001 6e 00100000 79 01101111 75 00100000 64 01100101 63 01101001 70 01101000 65 01110010 20 01110100 68 01101001 73 00111111

Becomes:

67 97 110 32 121 111 117 32 100 101 99 105 112 104 101 114 32 116 104 105 115 63

We can now convert this to ASCII. ASCII tables are available online (http://www.asciitable.com/). Actually, the step to convert hex and binary to decimal can really be ignored and we could convert directly from hex and binary to ASCII but how much fun would that be?

67 97 110 32 121 111 117 32 100 101 99 105 112 104 101 114 32 116 104 105 115 63
C a n y o u d e c i p h e r t h i s ?

Remove the spaces and you get the answer (and the question!):

Can you decipher this?

There is no real mathematics involved apart from knowledge of bases other than decimal.


That excercise you just did "does not involve math"????
:lol: :lol: :lol:

Okay. If you say so.

But math or not it was good. (applause).



liveandrew
Velociraptor
Velociraptor

User avatar

Joined: 4 Oct 2016
Age: 56
Gender: Male
Posts: 479
Location: Cornwall, UK

30 Apr 2017, 8:35 am

naturalplastic wrote:
That excercise you just did "does not involve math"????
:lol: :lol: :lol:

Okay. If you say so.

But math or not it was good. (applause).

Thank you! It's a shame that Anon_92 thought it was "meaningless numbers you randomly typed" and didn't have a go at solving it.


_________________
Diagnosed: Asperger's Syndrome (ICD-10)
Self-Diagnosed: Aphantasia
Your neurodiverse (Aspie) score: 152 of 200
Your neurotypical (non-autistic) score: 46 of 200

Listener of all things noisy, viewer of all things bloody, writer of all things sh*t.


LoveNotHate
Veteran
Veteran

User avatar

Joined: 12 Oct 2013
Gender: Female
Posts: 6,195
Location: USA

30 Apr 2017, 9:11 am

The story goes that upon Hippasus discovering the irrational number, the purist mathematician, Pythagoras killed him by throwing him overboard a ship.

However, do irrational numbers actually exist in reality (as measurements, assuming proper measurement gear)?

For example, why or why not does the hypotenuse of this triangle (of definite length) have an indefinite calculated length, or are we mistaken that physical objects may not have a definite length ?
Image

You can find different POVs here.
https://math.stackexchange.com/question ... in-reality
https://www.quora.com/Do-irrational-numbers-exist



lostonearth35
Veteran
Veteran

User avatar

Joined: 5 Jan 2010
Age: 50
Gender: Female
Posts: 11,870
Location: Lost on Earth, waddya think?

30 Apr 2017, 10:07 am

Why is Greenland called Greenland when there is nothing green in it, and Iceland called Iceland when there is very little ice in it?



Anon_92
Pileated woodpecker
Pileated woodpecker

User avatar

Joined: 26 Apr 2017
Gender: Male
Posts: 196

02 May 2017, 1:02 am

SaveFerris wrote:
I can also answer any question asked of me but can't guarantee the answer will be correct :D


Actually no... the answer will ALWAYS be correct.



Anon_92
Pileated woodpecker
Pileated woodpecker

User avatar

Joined: 26 Apr 2017
Gender: Male
Posts: 196

02 May 2017, 1:04 am

liveandrew wrote:
Anon_92 wrote:
liveandrew wrote:
Can you decipher this?
43011000016e0010000079011011117500100000640110010163
0110100170011010006501110010200111010068011010017300111111


Yeah- it's meaningless numbers you randomly typed.

No, it isn't. I guess you can't do it. All the clues are there.

EDIT: I can give a clue if it's too hard?


When why don't you just explain what it means in a new thread since you already know... other Aspies want to know this.



Anon_92
Pileated woodpecker
Pileated woodpecker

User avatar

Joined: 26 Apr 2017
Gender: Male
Posts: 196

02 May 2017, 1:05 am

248RPA wrote:
Does anyone offline know you have a WP account?


I actually have an AOL account that I have been teaching a thousand new words to. Do you guys realize how much money my AOL spellcheck is worth?



Anon_92
Pileated woodpecker
Pileated woodpecker

User avatar

Joined: 26 Apr 2017
Gender: Male
Posts: 196

02 May 2017, 1:08 am

The Knights & Knaves puzzle.....

-two doors
-one guard guards each door
-one door leads to freedom, one leads to death
-one guard always tells the truth, one always lies

Tell the liar the truth.



Anon_92
Pileated woodpecker
Pileated woodpecker

User avatar

Joined: 26 Apr 2017
Gender: Male
Posts: 196

02 May 2017, 1:08 am

naturalplastic wrote:
If God can do anything can he create a boulder so heavy that even he couldnt lift it?


Yes and no.



Anon_92
Pileated woodpecker
Pileated woodpecker

User avatar

Joined: 26 Apr 2017
Gender: Male
Posts: 196

02 May 2017, 1:10 am

SaveFerris wrote:
What happens when an unstoppable force meets an immovable object?


If it's big enough, it would cause a black hole.



Anon_92
Pileated woodpecker
Pileated woodpecker

User avatar

Joined: 26 Apr 2017
Gender: Male
Posts: 196

02 May 2017, 1:12 am

EzraS wrote:
Aren't the questions being asked only for the OP to answer?

And shouldn't the questions being asked be ones that can't be googled for the answer?

So far liveandrew asked the best question.
To which Anon_92 gave the worst possible answer.

Even I could tell that wasn't a meaningless string of numbers and I'm basically intellectually disabled when it comes to any form of mathematics.


The questions are not for me to answer but for YOU to then share it with Aspies. I am just telling you it's OK to be smart.



Anon_92
Pileated woodpecker
Pileated woodpecker

User avatar

Joined: 26 Apr 2017
Gender: Male
Posts: 196

02 May 2017, 1:13 am

LoveNotHate wrote:
What's the solution to the yet unsolved Zodiac killer's Nov. 1969 message?

Image
http://zodiackillerciphers.com/wiki/ind ... ter_cipher


The madman is an Aspie gone mad and you guys can decipher it if you want to, but it's too complicated to do... better the Zodiac just confesses.



EzraS
Veteran
Veteran

User avatar

Joined: 24 Sep 2013
Gender: Male
Posts: 27,828
Location: Twin Peaks

02 May 2017, 4:54 am

Anon_92 wrote:
EzraS wrote:
Aren't the questions being asked only for the OP to answer?

And shouldn't the questions being asked be ones that can't be googled for the answer?

So far liveandrew asked the best question.
To which Anon_92 gave the worst possible answer.

Even I could tell that wasn't a meaningless string of numbers and I'm basically intellectually disabled when it comes to any form of mathematics.


The questions are not for me to answer but for YOU to then share it with Aspies. I am just telling you it's OK to be smart.


Of course that's not what you said in your original post. Not that it really matters any.

Also if you're going for a poor man's version of Reddit's PhD_in_everything, you need to step it up quite a bit more.



liveandrew
Velociraptor
Velociraptor

User avatar

Joined: 4 Oct 2016
Age: 56
Gender: Male
Posts: 479
Location: Cornwall, UK

05 May 2017, 3:54 am

Anon_92 wrote:
liveandrew wrote:
Anon_92 wrote:
liveandrew wrote:
Can you decipher this?
43011000016e0010000079011011117500100000640110010163
0110100170011010006501110010200111010068011010017300111111


Yeah- it's meaningless numbers you randomly typed.

No, it isn't. I guess you can't do it. All the clues are there.

EDIT: I can give a clue if it's too hard?


When why don't you just explain what it means in a new thread since you already know... other Aspies want to know this.

I did explain. Have a look up the page.


_________________
Diagnosed: Asperger's Syndrome (ICD-10)
Self-Diagnosed: Aphantasia
Your neurodiverse (Aspie) score: 152 of 200
Your neurotypical (non-autistic) score: 46 of 200

Listener of all things noisy, viewer of all things bloody, writer of all things sh*t.


teksla
Veteran
Veteran

User avatar

Joined: 29 Jul 2015
Gender: Female
Posts: 783

13 May 2017, 2:37 pm

Anon_92 wrote:
naturalplastic wrote:
Does God exist?



Yes obviously but us Aspies are not supposed to make a big deal out of it... we just know. NT people have problems with supernatural stuff.

What do you mean by "god obviously exists"?


_________________
Diagnosed with
F84.8 (PDD-NOS) 2014
F33.1 Major Depressive Disorder, recurrent, moderate.