answersLogoWhite

0

🧪

Scientific Notation

Scientific notation is the expression of a number based on the largest exponent of 10 for its value, where the form is a decimal number A x 10n.

6,389 Questions

Are Scientific notation is a way of making numbers scientific?

Scientific notation is a useful way of dealing with very large and very small numbers. It allows them to be presented in a form where their magnitude can be seen more easily. Also it can simplify calculations by allowing you to concentrate on the significant digits rather than the orders of magnitude which are very easily dealt with. This latter advantage has somewhat diminished with the widespread availability of calculators and computers. But previously people used log tables and slide rules for multiplication and division. These calculating devices depended on thinking of numbers in their scientific notation.

How is scientific notation used in forensics?

Scientific notation used in forensics to compute very large or very small numbers.

What are the steps to subtract in scientific notation?

  1. Convert the numbers so that they all have the same index for 10.
  2. Calculate the subtraction for the mantissae, ignoring the powers of 10.
  3. Add back the power of 10 term.
  4. Adjust the power, if necessary, so that the mantissa of the answer is in the range [1, 10).

Example:

1.23*10^3 - 3.4*10^2

Convert them so that the power of 10 is 2:

12.3*10^2 - 3.4*10^2 = (12.3 - 3.4)*10^2 = 8.9*10^2.

{there is no need to adjust the power of 10).

Or

Convert them so that the power of 10 is 3: 1.23*10^2 - 0.34*10^3 = (1.23 - 0.34)*10^3 = 0.89*10^3 and now you need to adjust because the mantissa is less than 1. So 8.9*10^2.

How is scientific notation related to the floating point representation used by computers?

Floating point numbers are stored in scientific notation using base 2 not base 10.

There are a limited number of bits so they are stored to a certain number of significant binary figures.

There are various number of bytes (bits) used to store the numbers - the bits being split between the mantissa (the number) and the exponent (the power of 10 (being in the base of the storage - in binary, 10 equals 2 in decimal) by which the mantissa is multiplied to get the binary/decimal point back to where it should be), examples:

  • Single precision (IEEE) uses 4 bytes: 8 bits for the exponent (encoding ±), 1 bit for the sign of the number and 23 bits for the number itself;
  • Double precision (IEEE) uses 8 bytes: 11 bits for the exponent, 1 bit for the sign, 52 bits for the number;
  • The Commodore PET used 5 bytes: 8 bits for the exponent, 1 bit for the sign and 31 bits for the number;
  • The Sinclair QL used 6 bytes: 12 bits for the exponent (stored in 2 bytes, 16 bits, 4 bits of which were unused), 1 bit for the sign and 31 bits for the number.

The numbers are stored normalised:

In decimal numbers the digit before the decimal point is non-zero, ie one of {1, 2, ..., 9}.

In binary numbers, the only non-zero digit is 1, so *every* floating point number in binary (except 0) has a 1 before the binary point; thus the initial 1 (before the binary point) is not stored (it is implicit).

The exponent is stored by adding an offset of 2^(bits of exponent - 1), eg with 8 bit exponents it is stored by adding 2^7 = 1000 0000

Zero is stored by having an exponent of zero (and mantissa of zero).

Example 10 (decimal):

10 (decimal) = 1010 in binary → 1.010 × 10^11 (all digits binary) which is stored in single precision as:

sign = 0

exponent = 1000 0000 + 0000 0011 = 1000 00011

mantissa = 010 0000 0000 0000 0000 0000 (the 1 before the binary point is explicit).

Example -0.75 (decimal):

-0.75 decimal = -0.11 in binary (0.75 = ½ + ¼) → 1.1 × 10^-1 (all digits binary) → single precision:

sign = 1

exponent = 1000 0000 + (-0000 0001) = 0111 1111

mantissa = 100 0000 0000 0000 0000 0000

Note 0.1 in decimal is a recurring binary fraction 0.1 (decimal) = 0.0001100110011... in binary which is one reason floating point numbers have rounding issues when dealing with decimal fractions.

What is the result of (6.2 and times 10 4) x (3.3 and times 10 2) expressed in scientific notation?

When multiplying exponents, you add them. So, 10^4 x 10^2 = 10^6. Now 6.2 x 3.3 = 20.46. So, you would have 20.46 x10^6, but we want the number in front of the x10 to be less than 10 and greater than 1, so the answer would be 2,046x10^7 (move the decimal one to the left, and increase the exponent by 1).

What is 1 billion in scientific notation?

Scientific notation is is a great way to shorten long numbers. When you use scientific notation, you are counting the number of place the decimal has to move in order to get the short form of the number. For 1 billion, it would be 1 x 10^9 because the decimal point had to shift 9 times.

How do you write 673.5 in scientific notation?

When writing 673/5 in scientific notation it should look like 6.735 * 10^2.