Number of tracks

hard drive

If you know the disk capacity, bytes per track, and number of surfaces, then how do you calculate the number of tracks?

Best Answer

Number of tracks is totally dependant on how the manufacturer laid out the disk internally, which you will not know. All modern disks use LBA (logical block addressing), in which the OS addresses the drive on a sector-by-sector basis, not knowing or caring how or where the sectors are physically located on the platters (nor how many platters there actually are).

Not only that, but the number of sectors per track depends on how far out from the spindle motor you are at the time; it's not a spiral like on a CD. The further from the spindle you are, the more sectors per track (and thus the higher the transfer rate).

Since you do not know the number of sectors per track (which, again, varies depending where on disk you are), you cannot determine how many tracks exist, given capacity, number of sectors, and number of surfaces.

In other words, you don't. Period.

UPDATE:

If your teacher wants a mathematically correct answer, it would be (CAPACITY_IN_BYTES / BYTES_PER_TRACK) to get the number of tracks on disk, and if you want tracks per surface, divide the number of tracks on disk by the number of surfaces.

However, note that this is totally inapplicable to modern drives. The real answer is that it cannot be calculated since you do not know how many sectors per track there are (and there are a variable number in different zones of the disk) -- hence, there are too many unknowns to be able to solve the formula.

Related Question