maths.free › Number Theory › Number bases
Number bases
Converting between decimal, binary, octal and hexadecimal.
A base-b number is a sum of powers of b. To convert from decimal, divide by b repeatedly; the remainders, read from the last to the first, are the digits. Binary (base 2) and hexadecimal (base 16) are how computers store every number you see.
வேலை செய்த உதாரணம்: 255 to binary
படிப்படியாக
- 255_{10} \to \text{base } 2
Repeatedly divide by 2; the remainders, read bottom-up, are the digits.
- 255 = 127 \times 2 + 1
remainder 1
- 127 = 63 \times 2 + 1
remainder 1
- 63 = 31 \times 2 + 1
remainder 1
- 31 = 15 \times 2 + 1
remainder 1
- 15 = 7 \times 2 + 1
remainder 1
- 7 = 3 \times 2 + 1
remainder 1
- 3 = 1 \times 2 + 1
remainder 1
- 1 = 0 \times 2 + 1
remainder 1
விடை தெரியப்படுத்து
Symbols used here
The exponent b must be raised to for x; ln uses base e.
Add a_k for k = 1 up to n.
Multiply a_k for k = 1 up to n.
Naturals, integers, rationals, reals, complex numbers.
n divides a − b; a and b have the same remainder.
b is a multiple of a; the largest number dividing both.
Count of 1..n coprime to n; number of primes up to x.
The remainders 0…n−1 with clock arithmetic.
What is left after dividing a by n.
How to: Number bases
- Repeatedly divide by 2; the remainders, read bottom-up, are the digits.
- remainder 1
- remainder 1
- remainder 1
- remainder 1
- remainder 1
- remainder 1
- remainder 1
Questions people ask
Why are primes so important?
Every integer factors into primes in exactly one way, so primes are the atoms of multiplication. Cryptography relies on that factoring being easy to state and hard to do.
How do I tell whether a big number is prime?
Trial division up to the square root works for small numbers. For large ones, probabilistic tests (Miller–Rabin) give an answer that is wrong with negligible probability, and deterministic tests (AKS) exist but are slower.
உங்களை முயற்சிக்கவும்
மேலும் Number Theory
Prime factorisationPrime numbersGCD and LCMModular arithmeticDivisorsSequencesDiophantine equationsFermat's little theorem and Euler's theoremRSA: cryptography from number theory