problem 206
Forum rules
As your posts will be visible to the general public you are requested to be thoughtful in not posting anything that might explicitly give away how to solve a particular problem.
This forum is NOT meant to discuss solution methods for a problem.
See also the topics:
Don't post any spoilers
Comments, questions and clarifications about PE problems.
As your posts will be visible to the general public you are requested to be thoughtful in not posting anything that might explicitly give away how to solve a particular problem.
This forum is NOT meant to discuss solution methods for a problem.
In particular don't post any code fragments or results.
Don't start begging others to give partial answers to problems
Don't ask for hints how to solve a problem
Don't start a new topic for a problem if there already exists one
Don't start begging others to give partial answers to problems
Don't ask for hints how to solve a problem
Don't start a new topic for a problem if there already exists one
See also the topics:
Don't post any spoilers
Comments, questions and clarifications about PE problems.
- Oliver1978
- Posts: 166
- Joined: Sat Nov 22, 2014 9:13 pm
- Location: Erfurt, Germany
Re: problem 206
So, I gather from the previous posts that those "_" digits do not have to be distinct?
49.157.5694.1125
- Marcus_Andrews
- Administrator
- Posts: 1637
- Joined: Wed Nov 09, 2011 5:23 pm
- Oliver1978
- Posts: 166
- Joined: Sat Nov 22, 2014 9:13 pm
- Location: Erfurt, Germany
-
thechosenone98
- Posts: 6
- Joined: Thu May 10, 2018 3:13 pm
Possible error in Euler problem #206
Hi, I am posting this as a suggestion to verify that there is in fact only 1 possible positive
number that, once squared, gives another number in the form :
1_2_3_4_5_6_7_8_9_0 (where _ is a single digit)
EDIT: Each _ can be any single digit and they can be repeated.
While i was giving it a go with my calculator and a bit of brainage I found that
the number 1 388 659 302 squared gives the number : 1928374655647382910
which to my understanding also respects the form given above
(Note that the square shown above is just the sequence 987654321 imbeded in the form given by the problem (that is the sequence 123456789 reversed and splitted appart in each _ places.
I, in fact, found this number by taking the square root of 1928374655647382910 (It just seemed so perfect it had to work you know
).
So please correct me if I'm wrong or modify the problem 206 so that it asks you for the sum of every possible combination if and only if my answer is right too of course
As of right now, the only accepted answer is <value removed by moderator> <-- Oh well...
Have a nice day
number that, once squared, gives another number in the form :
1_2_3_4_5_6_7_8_9_0 (where _ is a single digit)
EDIT: Each _ can be any single digit and they can be repeated.
While i was giving it a go with my calculator and a bit of brainage I found that
the number 1 388 659 302 squared gives the number : 1928374655647382910
which to my understanding also respects the form given above
(Note that the square shown above is just the sequence 987654321 imbeded in the form given by the problem (that is the sequence 123456789 reversed and splitted appart in each _ places.
I, in fact, found this number by taking the square root of 1928374655647382910 (It just seemed so perfect it had to work you know
So please correct me if I'm wrong or modify the problem 206 so that it asks you for the sum of every possible combination if and only if my answer is right too of course
As of right now, the only accepted answer is <value removed by moderator> <-- Oh well...
Have a nice day
- RobertStanforth
- Administrator
- Posts: 2666
- Joined: Mon Dec 30, 2013 11:25 pm
Re: problem 206
@thechosenone98:
I have moved your post to the correct forum for problem clarifications.
Also, please do not post answers in public view!!! I have removed it from your post.
To answer your question, 1388659302 is not a valid solution. The value you give for its square is not correct, and is not even a square. The problem does indeed have only one answer.
I have moved your post to the correct forum for problem clarifications.
Also, please do not post answers in public view!!! I have removed it from your post.
To answer your question, 1388659302 is not a valid solution. The value you give for its square is not correct, and is not even a square. The problem does indeed have only one answer.
-
thechosenone98
- Posts: 6
- Joined: Thu May 10, 2018 3:13 pm
Re: problem 206
I don't get what you mean by it is not even a square. You have to square it to get my answer. Isn't that what the question wants (a number whose square is of the form 1_2_3_4_5_6_7_8_9_0)?
- RobertStanforth
- Administrator
- Posts: 2666
- Joined: Mon Dec 30, 2013 11:25 pm
-
thechosenone98
- Posts: 6
- Joined: Thu May 10, 2018 3:13 pm
Re: problem 206
Well according to my calculator it is. I'm very confused right now
To test if it is a perfect square I just take the square root of it and if it gives me an integer it is then a perfect square right?
-
thechosenone98
- Posts: 6
- Joined: Thu May 10, 2018 3:13 pm
Re: problem 206
Very sorry about that (i tried to take the square root in python and you are in fact correct). I just found the limitation of this amazing calculator lolz.
- RobertStanforth
- Administrator
- Posts: 2666
- Joined: Mon Dec 30, 2013 11:25 pm
Re: problem 206
I expect your calculator is rounding to ten significant digits, so the fractional part has been truncated.
-
DJohn
- Posts: 90
- Joined: Sat Oct 11, 2008 12:24 pm
Re: problem 206
You don't need a calculator to see that you've gone wrong: The last digit of 1388659302 is 2. Whatever the square is, its last digit will be 4, not 0.
-
thechosenone98
- Posts: 6
- Joined: Thu May 10, 2018 3:13 pm
Re: problem 206
Yes i can actually find the fractinnal part if I substract the whole integer part from it and than it gives me the fractionnal reminder part...It is sad that it doesn't show me that there is a fractionnal part even if it doesn't have any more space on screen to display it (there should be an indicator or something, that would be nice).
-
thechosenone98
- Posts: 6
- Joined: Thu May 10, 2018 3:13 pm
- dawghaus4
- Posts: 56
- Joined: Fri Nov 29, 2013 2:22 am
Re: Possible error in Euler problem #206
The square of any number ending in 2 will end in 4.thechosenone98 wrote: Thu May 10, 2018 3:39 pm ...
While i was giving it a go with my calculator and a bit of brainage I found that
the number 1 388 659 302 squared gives the number : 1928374655647382910
which to my understanding also respects the form given above
...
The square root of any number ending in 0 will end in 0.
Tom