πŸ“˜ Section B β€” Text, Images, Sound & Data
πŸ”Š Chapter 1 Β· Lesson 10 Β· Paper 1 & 2

Sound Representation

How computers capture, measure, and store the physical waves of sound as binary numbers

πŸ”₯ 01 Β· Did You Know?

When you stream a song on Spotify, your ears are hearing something that was originally a continuous pressure wave in air β€” but was captured, measured 44,100 times per second, converted into 65,536 possible amplitude levels, and stored as binary. That process happened in a recording studio, was compressed, transmitted through fibre-optic cables, and reconstructed by your phone's speaker β€” all without losing more detail than human ears can detect. The standard we use today β€” 44.1 kHz, 16-bit audio β€” was chosen in the 1980s for CDs and has remained the standard ever since. Telephone calls use a much cruder 8 kHz, 8-bit system β€” which is why voices on calls sound different from in-person conversation. Every difference you can hear between a phone call and a concert recording comes down to two numbers: sample rate and bit depth.

From Sound Wave to Binary

Sound in the real world is analogue β€” a continuous wave of pressure variation in air. Computers can only store discrete binary numbers. To store sound digitally, we must sample the wave β€” take measurements of its amplitude at regular intervals and store each measurement as a binary number.

πŸ”‘ The three key properties: Sample Rate (how often we measure) Β· Bit Depth (how precisely we measure each sample) Β· Duration (how long the recording lasts). All three determine file size.
πŸ“‘
Analogue Signal
A continuous, smooth wave. Real-world sound is analogue β€” it has infinite possible values at every moment in time.
πŸ”’
Sampling
Measuring the amplitude (height) of the sound wave at regular intervals. Each measurement is one sample, stored as a binary number.
⏱
Sample Rate
How many samples are taken per second. Measured in Hertz (Hz) or kHz. Higher rate = more accurate reproduction = larger file.
🎚
Bit Depth
The number of bits per sample. Determines how many amplitude levels are possible. More bits = finer detail = larger file.

Sample Rates β€” Real-World Standards

Sample RateQualityTypical UseEffect
8,000 Hz (8 kHz)LowPhone calls, voice memosCaptures speech frequencies, tinny sound
22,050 HzMediumOld radio quality, AM radioBetter than phone, missing high frequencies
44,100 Hz (44.1 kHz)HighCD audio β€” the standardCovers full human hearing range (≀ 20 kHz)
48,000 Hz (48 kHz)HighVideo / professional audioSlight quality margin above CD
96,000 Hz+StudioProfessional recording studiosCaptures beyond human hearing; post-production flexibility

Bit Depth β€” Amplitude Precision

Bit DepthAmplitude Levels (2ⁿ)Typical Use
8-bit256Telephone, very low quality audio
16-bit65,536CD audio β€” the standard for music
24-bit16,777,216Professional studio recording
32-bit4,294,967,296High-end audio production / post-processing

The File Size Formula

File size (bits) = Sample rate Γ— Bit depth Γ— Duration (s) Γ— Channels
Mono = 1 channel  Β·  Stereo = 2 channels
Γ· 8 β†’ bytes  Β·  Γ· 1024 β†’ KB  Β·  Γ· 1024 β†’ MB
1

Identify the four values: sample rate (Hz), bit depth (bits per sample), duration (seconds), channels (1 = mono, 2 = stereo).

2

Multiply all four together: SR Γ— BD Γ— Duration Γ— Channels = file size in bits.

3

Divide by 8 for bytes, by 1024 for KB, by 1024 again for MB. Show every step β€” each conversion earns a mark.

The Analogue-to-Digital Converter (ADC)

The hardware component that performs sampling is the Analogue-to-Digital Converter (ADC). It is built into microphones, sound cards, and recording devices. It measures the sound wave amplitude at each sample interval and outputs a binary number. The reverse process β€” converting stored binary back to a speaker signal β€” is performed by a Digital-to-Analogue Converter (DAC).

⚠️ Common Exam Mistakes

❌

Forgetting to multiply by the number of channels. A stereo recording has 2 channels β€” the file is exactly double the size of a mono recording at the same quality. If the question says "stereo", you must multiply by 2.

❌

Confusing sample rate with bit depth. Sample rate = how often per second. Bit depth = how precisely each sample is measured. They are independent β€” a file can have a high sample rate with a low bit depth, or vice versa.

❌

Forgetting to convert kHz to Hz. If given "44.1 kHz", use 44,100 in the formula β€” not 44.1. The formula requires Hz (samples per second), not kHz.

❌

Saying "higher sample rate = better quality" without explaining why. You must explain that more samples per second means the digital waveform more accurately matches the original analogue wave β€” fewer details are lost between samples.

πŸ†
Cambridge Exam Tip: Sound file size questions are almost identical in structure to image file size questions β€” show every step. The formula, total bits, bytes, then KB or MB. Common traps: the question mentions stereo (Γ—2), gives sample rate in kHz (convert to Hz), or asks you to work backwards from file size to find one missing value. Rearrange the formula: unknown = file size Γ· (other three values).
Sampling Visualiser & File Size Calculator
// See how sample rate captures a sound wave Β· Then calculate exact file sizes for any recording
Part 1 β€” Watch how sampling captures a wave
Sample Rate
Bit Depth
Analogue wave (original)
Sample points
Digital reconstruction
Part 2 β€” Calculate exact file sizes
Load a real-world scenario:
CD Quality
3 min stereo
Phone call
1 min mono
Exam question
3s mono 44.1kHz
Video audio
1 min stereo
Studio
10 min stereo
Sample Rate (Hz)
e.g. 44100 for CD
Bit Depth (bits)
bits per sample
Duration (seconds)
total recording time
Channels
Γ— 1 channel
⚠ Enter valid positive numbers for sample rate, bit depth, and duration.

Calculating Sound File Size β€” Step by Step

The exact format Cambridge uses for 3–4 mark calculation questions. Reveal each step only after attempting it.

πŸ“‹ Question: A sound recording is made with the following settings:
Sample rate: 44,100 Hz  Β·  Bit depth: 16 bits  Β·  Duration: 3 minutes  Β·  Stereo (2 channels)

(a) Calculate the file size of this recording in megabytes (MB). Show all working.  [4]
(b) Explain the effect of halving the sample rate on the recording.  [2]
1
Part (a) β€” Identify values and convert units
Duration is given in minutes β€” must convert to seconds before using the formula.
β–Ά Click to reveal
Sample rate = 44,100 Hz Bit depth = 16 bits per sample Duration = 3 minutes = 3 Γ— 60 = 180 seconds Channels = 2 (stereo)
2
Part (a) β€” Calculate total bits
Apply the formula: SR Γ— Bit depth Γ— Duration Γ— Channels.
β–Ά Click to reveal
File size (bits) = 44,100 Γ— 16 Γ— 180 Γ— 2 = 44,100 Γ— 16 = 705,600 705,600 Γ— 180 = 127,008,000 127,008,000 Γ— 2 = 254,016,000 bits
3
Part (a) β€” Convert bits to MB
Divide by 8 for bytes, Γ· 1024 for KB, Γ· 1024 for MB.
β–Ά Click to reveal
254,016,000 Γ· 8 = 31,752,000 bytes 31,752,000 Γ· 1024 = 31,007.8 KB 31,007.8 Γ· 1024 β‰ˆ 30.28 MB File size β‰ˆ 30.28 MB βœ“ [4 marks: Γ—180 seconds βœ“ | Γ—2 channels βœ“ | bitsβ†’bytes βœ“ | final MB βœ“]
4
Part (b) β€” Effect of halving the sample rate
Think about both the quality effect and the file size effect β€” Cambridge wants both.
β–Ά Click to reveal
(b) Halving the sample rate from 44,100 Hz to 22,050 Hz: Quality effect: β€” Fewer samples are taken per second [1] β€” The digital recording less accurately represents the original analogue wave / high-frequency sounds are lost or distorted / audio quality decreases [1] File size effect: β€” The file size is halved / from β‰ˆ30.28 MB to β‰ˆ15.14 MB [bonus] [2 marks: fewer samples βœ“ | less accurate / quality decreases βœ“]

Cambridge-Style Practice

Show every step of calculation. For explain questions, always give two distinct points for 2-mark answers.

Question 1
3 marks
A sound file is recorded with a sample rate of 8,000 Hz, bit depth of 8 bits, and a duration of 30 seconds. It is a mono recording. Calculate the file size in kilobytes (KB). Show all working.
βœ“Total bits = 8,000 Γ— 8 Γ— 30 Γ— 1 = 1,920,000 bits[1]
βœ“Bytes = 1,920,000 Γ· 8 = 240,000 bytes[1]
βœ“KB = 240,000 Γ· 1024 = 234.375 KB[1]
Question 2
2 marks
Explain what is meant by the sample rate of a digital audio recording and describe the effect of increasing it.
βœ“Sample rate is the number of samples (measurements of amplitude) taken per second / measured in Hz / how frequently the analogue wave is measured[1]
βœ“Increasing the sample rate produces a more accurate digital representation of the original analogue wave / captures higher-frequency sounds / increases the file size[1]
Award second mark for any two of: more accurate / higher frequency captured / larger file β€” one is sufficient for the mark
Question 3
2 marks
A sound file has a size of 7,680,000 bits. The recording is mono with a bit depth of 16 bits and a duration of 10 seconds. Calculate the sample rate used.
βœ“Correct rearrangement: Sample rate = total bits Γ· (bit depth Γ— duration Γ— channels) = 7,680,000 Γ· (16 Γ— 10 Γ— 1)[1]
βœ“7,680,000 Γ· 160 = 48,000 Hz (48 kHz)[1]
Working backwards: file size (bits) = SR Γ— BD Γ— Duration β†’ SR = file size Γ· (BD Γ— Duration)
Question 4
2 marks
Explain the difference between the sample rate and the bit depth of a digital audio file.
βœ“Sample rate is the number of samples taken per second / controls how often the sound wave is measured / affects frequency accuracy[1]
βœ“Bit depth is the number of bits used to store each sample / controls how many amplitude levels are possible / affects dynamic range / how precisely the volume of each sample is recorded[1]
Do not accept: confusing sample rate (frequency of measurement) with bit depth (precision of each measurement) β€” they must be clearly distinct

5-Question Challenge

Sample rate, bit depth, file size, ADC, and the stereo multiplier. Complete all 5 for your XP.

βœ…
Score:
0 / 5
πŸ”Š
Lesson 10 Complete β€” Sound Engineer Certified!
+50 XP Β· Chapter 1 Β· Section B
πŸ†
Lesson Complete! Score: Β· Saved βœ…
Next Lesson β†’