Anti-aliasing
Anti-aliasing is the process of bluring sharp edges in pictures to get rid of the jagged edges on lines. After an image is rendered, some applications automatically anti-alias images. The program looks for edges in an image, and then blurs adjacent pixels to produce a smoother edge.
In order to anti-alias an image when rendering, the computer has to take samples smaller than a pixel in order to figure out exactly where to blur and where not to. For example, if the computer finds that one pixel is on the edge of thwo objects, it then takes sub-pixel samples and checks about how many of them showed the fron obejct, and how many showed the back one. Lets say that the computer took 8 sub-samples, and 4 of them were on object one and the other 4 on object two. The computer then takes the resulting color values from the subsamples and averages them into a resulting blurred pixel, when viewed from a distance gives a smoother edge effect.