I am confused with this new way of writing exponential. For example I saw a question where person has changed 1.66X10e-27 to 1.66e-26. I am confused how -27 is reduced to -26 thanks
2026-03-27 19:32:16.1774639936
Why 1.66x10e-27 is 1.66e-26
518 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
e-27is a way of expressing $10^{-27}$ in programming. There is no need for a10before it; in fact, putting a10before it causes it to be multiplied. So1.66x10e-27actually means $1.66 \times 10 \times 10^{-27} = 1.66 \times 10^{-26}$, which is equal to1.66e-26.