Earlier quoted context omitted.
The author is saying the the numbers were rounded when based in another unit. for instance 136,036 lbs reported from apple is converted from the rounded 59,000 kg. The 59,000 kg comes off more as a rounded number than 136,036 lbs.
and my point was that those rounded numbers (in another unit) were just that rounded numbers, I didn't see anything amusing about it.
Apple's amusingly round reuse figures
31–40 of 101 posts
Re: Apple's amusingly round reuse figures
#32This reminds me of the elevation of Mt Everest as determined in 1856: > Peak XV (measured in feet) was calculated to be exactly 29,000 ft (8,839.2 m) high, but was publicly declared to be 29,002 ft (8,839.8 m) in order to avoid the impression that an exact height of 29,000 feet (8,839.2 m) was nothing more than a rounded estimate Source: https://en.wikipedia.org/wiki/Mount_Everest
Re: Apple's amusingly round reuse figures
#33Python code:
import math
def roundup(x):
return int(math.ceil(x / 100.0)) * 100
materials_in_kgs = [12750000,6090000,5420000,2050000,1340000,86000,18000,20000,59000,2000,3000,1000]
materials_in_lbs = [i*2.204 for i in materials_in_kgs]
materials_in_lbs_rounded = [roundup(i) for i in materials_in_lbs]
print sum(materials_in_lbs_rounded)Re: Apple's amusingly round reuse figures
#34They simply rounded the weights in pounds to the next hundred which resulted in the extra 644lbs. Python code: import math def roundup(x): return int(math.ceil(x / 100.0)) * 100 materials_in_kgs = [12750000,6090000,5420000,2050000,1340000,86000,18000,20000,59000,2000,3000,1000] materials_in_lbs = [i*2.204 for i in materials_in_kgs] materials_in_lbs_rounded = [roundup(i) for i in materials_in_lbs] print sum(materials_…
Re: Apple's amusingly round reuse figures
#35Earlier quoted context omitted.
But they've clearly been converted to pounds, then back to kilograms. Lead 19,994 Tin 1,999 Silver 2,999 Gold 1,000
Interesting. For the UK they just say 1 tonne, 2 tonnes, etc - https://www.apple.com/uk/environment/resources/ So everyone’s trying to play this as some conspiracy of fictional numbers. All we’ve actually found is that Apple do localize their site, and possibly some weaknesses in how they do so.
Re: Apple's amusingly round reuse figures
#36Re: Apple's amusingly round reuse figures
#37This reminds me of the elevation of Mt Everest as determined in 1856: > Peak XV (measured in feet) was calculated to be exactly 29,000 ft (8,839.2 m) high, but was publicly declared to be 29,002 ft (8,839.8 m) in order to avoid the impression that an exact height of 29,000 feet (8,839.2 m) was nothing more than a rounded estimate Source: https://en.wikipedia.org/wiki/Mount_Everest
Or the joke about the museum guide telling visitors the dinosaur skeleton is 100,000,005 years old, because when he started there 5 years ago, an expert told him it was 100 million years old.
Re: Apple's amusingly round reuse figures
#38Re: Apple's amusingly round reuse figures
#39Re: Apple's amusingly round reuse figures
#40Earlier quoted context omitted.
and my point was that those rounded numbers (in another unit) were just that rounded numbers, I didn't see anything amusing about it.
The correct conversion of 1 metric ton into pounds is 2000 pounds, not 2204 pounds. It's amusing because Apple did it wrong.