Yearly Archives: 2012

Unclaimed Antarctica

Officially, Antarctica is not ruled by anybody; the entire continent is terra nullius: land that belongs to noone. After the Moon, it is the largest terra nullius area that men have walked on.

Seven countries (the United Kingdom, New Zealand, Australia, France, Norway, Chile and Argentina) have claimed sections of Antarctica, but those claims are not universally recognised, and in some cases overlap.

L-R: The Australian and New Zealander claims. Both were previously part of the UK’s claim.

L-R: The overlapping Argentinian and Chilean claims.

L-R: The Norwegian and French claims.

The United Kingdom’s claim. Note the overlap with the Argentinian and Chilean claims.

When all the existing claims are taken into account that still leaves a small area adjacent to the Norwegian claim, and the entire area between 90°W and 150°W (1.6 million square kilometres, three times the size of France) unclaimed by anyone.

Under the terms of the Antarctic Treaty Peru, South Africa, the USA and Russia have formally reserved the right to make a claim to land in Antarctica, but have yet failed to do so.

Which university course is most popular?

UCAS provides a great deal of statistical information about university applications. One of the most interesting datasets compares the number of applicants for each course with the number of places available.

(Note that the scale starts at three applicants per place, not at zero.)

Medicine, and subjects related to medicine like anatomy and nursing are the most popular by quite a large margin. The least popular are the technology subjects like metallurgy and materials science.

Ignoring non-specific “any area of study” courses, and those courses with less than a hundred places available, the top ten most popular courses in the country are:

  1. Medicine (A1) – 10.85 applicants per place
  2. Dentistry (A2) – 10.63 applicants per place
  3. Anatomy, Physiology and Pathology (B1) – 9.19
  4. Japanese Studies (T2) – 9.02
  5. Nursing (B7) – 8.89
  6. Veterinary Medicine (D1) – 8.74
  7. Medical Technology (B8) – 8.10
  8. Teacher Training (X1) – 7.90
  9. Aural and Oral Sciences (B6) – 7.58
  10. Microbiology (C5) – 7.56

Within the Physical Sciences astronomy and physics come out top, at 5.88 and 5.86 applicants per place respectively; and of the Biological Sciences microbiology is the most popular (7.56 applicants per place). Of the three “school sciences” physics is the clear winner (5.86) over biology (5.53) and chemistry (5.50).

Understanding the problem with RSA

Recent reports suggest that the very commonly used RSA encryption algorithm has significant security flaws. I couldn’t find a good explanation of the mathematical problem that causes these flaws online, but I think I’ve worked it out below.

The security of RSA keys rests on the difficulty of factorising the product (usually called n) of two large primes (usually called p and q). Multiplying p and q together is a very quick operation, but working out which p and q were multipled multiplied together to make a given n is very time consuming. If you don’t believe me, see how quickly you can multiply 3259 and 6553; and compare this with the time it takes you to work out which two prime numbers were multiplied together to make 60557843.

In cryptography, n is the public key and is made widely available, whereas p and q make up the private key and must be kept secret. Public keys are usually published to keyservers (here’s mine) and this means that they can be freely downloaded.

Researchers from the Ecole Polytechnique Fédérale de Lausanne in Switzerland downloaded 11.4 million RSA keys and discovered that a number of RSA public keys share a prime factor; that is, they have a different n with one overlapping p or q. This is problematic because finding the greatest common denominator of two numbers is a very quick process when compared with the time taken for prime factorisation.

If we take 60557843 (from above) and compare it with, for example, 15381367 we can very quickly find that they share 7741 as a factor, and with that piece of information we can find the other prime numbers very quickly.

This should not be a problem, because the prime numbers used in encryption are very large (usually hundreds or thousands of digits) and the chance of a “collision” is very small. But if the system used by the computer for generating prime numbers is not truly random then two computers using the same system are likely to produce the same prime numbers and these collisions become far more likely; the researchers found that about 0.38% (1 in 263) of keys were “faulty” in this way.

In conclusion, the problem exists not with the RSA algorithm itself but with the pseudo-random number generators used in RSA systems. Those generating encryption keys should ensure they use a hardware random number generator, one that uses a truly random process such as radioactive decay, to generate their random numbers.