0

I had a problem where I needed to find the result of the division of 2 positive large numbers.

$n1$=$29865^2$ ------- $n2=$$1.5*10^{11}$

When I divided them I got the result of $5.946*10^{19}$

but the correct was $5.946*10^{-3}$ which can be obtained by the division of $1.5*10^{-11}$

Do I always need to convert the exponent to be negative when dividing it by another number? can someone explain me why it happened?

Thank you

CiaPan
  • 13,049
Ryan
  • 1

1 Answers1

1

Try some other ways, equivalent to what you tried 'till now.

For example, compute a reciprocal of $n_2$ and multiply it by $n_1$, like $\frac 1{n_2}\times n_1.$

Or divide $n_2$ by $n_1$ and then take a reciprocal: $\frac 1{n_2/n_1}.$

Or let the whole calculation through logarithm and then exponentiation: $$n_1 : n_2 = 10^{\log n_1 - \log n_2} \\ = 10^{2\log 29865 - (11 + \log 1.5)}.$$

And so on.

If any of those ways gives an answer you expect, you'll know almost for sure the calculator is OK and it's your way of making calculation what is wrong.
Or, if several ways give consistent but unexpected result, then you'll know the calculation is beyond the reach of your device.

CiaPan
  • 13,049