Earlier quoted context omitted.
I'm not sure I understand your question, but we've posted countless times about this and are happy to answer about specific cases. You can find a lot of information via https://hn.algolia.com/?dateRange=all&page=0&prefix=true&que... and similar searches.
During the submission process where the form say a title is too long you could also be displaying how any transformations will affect it.
42 is found to be the sum of three cubes
181–190 of 256 posts
Re: 42 is found to be the sum of three cubes
#182Why doesn't this evaluate in Excel? =(-80538738812075974)^3 + 80435758145817515^3 + 12602123297335631^3 Returns 1.09785E+36
Because the numbers cubed are way larger than the numbers that Excel can represent precisely. Excel uses 64-bit IEEE 754 floats for all arithmetic. They can be used to accurately describe integers smaller than 2^53, or ~10^16. The first number cubed is ~-5*10^50, so you are very clearly outside the range where excel is precise. You should not use Excel to do any serious mathematics, or really anything else where nume…
Re: 42 is found to be the sum of three cubes
#183Earlier quoted context omitted.
Sorry, looks like the link has been change to a tweet from http://math.mit.edu/~drew/ I meant the html source of Andrew's dept homepage titled "Life, the Universe, and Everything" at that moment.
Well, pretty close anyway, technically it's only one comment...
$ curl -s https://math.mit.edu/~drew/ | python3 -c 'from sys import stdin as s; from html.parser import HTMLParser as P; p = P(); p.handle_data = print; p.feed(s.read())' | tr -s ' \n'
Life, the Universe, and Everything
(-80538738812075974)^3 + 80435758145817515^3 + 12602123297335631^3
$Re: 42 is found to be the sum of three cubes
#184Earlier quoted context omitted.
It is an open question as to whether every integer not equal to 4 or 5 modulo 9 is the sum of three cubes, although it is suspected to be true. https://en.wikipedia.org/wiki/Sums_of_three_cubes#Computatio... 33 and 42 were known to be exceptions of all sums less than 100 for which solutions were found, until recently. 42 was the most recent to fall.
Thanks, this is helpful. Why do we care if every integer not equal to 4 or 5 modulo 9 is the sum of three cubes? Just for fun?
It's possible that solving this problem in a satisfactory way would teach us something useful about number theory, that's useful in real world practical stuff.
Andrew Wiles' proof of Fermat's Last Theorem is based on the modularity of elliptic curves. I'm not sure to what extent Wiles' proof contributed to elliptic curve cryptography hitting the scene a decade later, but it probably didn't hurt.
Re: 42 is found to be the sum of three cubes
#185Earlier quoted context omitted.
During the submission process where the form say a title is too long you could also be displaying how any transformations will affect it.
That shows up as soon as the submission is created, and there's an 'edit' link if you need to change it. Just don't change it in ways that break the site guidelines: https://news.ycombinator.com/newsguidelines.html .
Re: 42 is found to be the sum of three cubes
#186Earlier quoted context omitted.
Isn't the set of all triples of integers be enumerable, because (inductively) the set of all pairs of integers is enumerable (thanks, Cantor)? Then, if one could enumerate all triples of integers, one could, for each triple, calculate the sum of the cubes. So, integers which are sums of cubes are enumerable. That doesn't mean they're a known recursive set, just recursively enumerable. Am I missing something? Perhaps…
It is enumerable, but I think what you may have missed is that negative numbers are included. i.e., > 42 = (-80538738812075974)^3 + 80435758145817515^3 + 12602123297335631^3
((-80538738812075974)^3)+(80435758145817515^3)+(12602123297335631^3)
Re: 42 is found to be the sum of three cubes
#187Earlier quoted context omitted.
During the submission process where the form say a title is too long you could also be displaying how any transformations will affect it.
That shows up as soon as the submission is created, and there's an 'edit' link if you need to change it. Just don't change it in ways that break the site guidelines: https://news.ycombinator.com/newsguidelines.html .
Re: 42 is found to be the sum of three cubes
#188Re: 42 is found to be the sum of three cubes
#189Re: 42 is found to be the sum of three cubes
#190Earlier quoted context omitted.
Because the numbers cubed are way larger than the numbers that Excel can represent precisely. Excel uses 64-bit IEEE 754 floats for all arithmetic. They can be used to accurately describe integers smaller than 2^53, or ~10^16. The first number cubed is ~-5*10^50, so you are very clearly outside the range where excel is precise. You should not use Excel to do any serious mathematics, or really anything else where nume…
Why is it that a program that people use for accounting doesn’t use arbitrary precision arithmetic?