(This applies only to version 10)
I obtain these two properties of silicon:
a = ElementData[14, "CrustAbundance"]
b = ElementData[14, "MeteoriteAbundance"]
both are given in units of g/g. Then I divide these two values
a/b
and get an odd result, which with I cannot further reasonably calculate with or plot.
(Quantity[0.000034, ("Grams")/("Grams")]) Quantity[3.6*10^6, (1/#1 &)[("Grams")/("Grams")]]
a = ElementData[14, "CrustAbundance"] // QuantityMagnitude; b = ElementData[14, "MeteoriteAbundance"] // QuantityMagnitude; a/bgives1.9. – Bob Hanlon Oct 23 '14 at 14:28