Hi, I’m relatively new to Julia and just installed version 1.5.2. Can someone explain to me how exponentiation works in this language? This might be incredibly basic, but negative exponents of 10 that are less than -1 throw incorrect answers.
Normal results:
julia> 10^-1
0.1
julia> 10^2
100
julia> 2^-4
0.0625
julia> 1e-5
1.0e-5
Weird results:
julia> 10^-2
0.010000000000000002
julia> 10^-5
1.0000000000000003e-5
Thanks in advance!