Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Sum of three cubes: 42
Last updated at 10:30 pm UTC on 5 January 2022
Exercise demonstrating math with LargeNegativeInteger and LargePositiveInteger:


Paste into a workspace and evaluate


 x := -80538738812075974.
 y := 80435758145817515. 
 z := 12602123297335631.

 (x * x * x) + (y * y * y) + (z * z * z)
 42
"Andrew Sutherland, MIT "

This is a Diophantine equation.

Other examples.