Analog Signal Fundamentals
Learning Objectives
- Define an analog signal and distinguish it from a digital signal
- Describe amplitude, frequency, period, wavelength, and phase for a periodic waveform
- Read and write the sinusoidal signal equation y(t) = A sin(ωt + φ)
- Identify common analog waveforms (sine, square, triangular, sawtooth) and where each is used
- Explain the basic idea of filtering and modulation as ways of shaping analog signals
- Recognize real-world sources and limitations of analog signals (noise, distortion, bandwidth)
Quick Answer
An analog signal is a continuously varying quantity — usually a voltage — that represents information by its shape at every instant in time, rather than by discrete numeric levels. Sound waves, temperature readings, and radio broadcasts are all naturally analog. Analog signals matter because every real-world physical quantity is analog first; even "digital" systems must sense, amplify, and eventually output analog voltages. Understanding amplitude, frequency, and waveform shape is the foundation for everything else in analog electronics, from amplifier design to filter theory to communication systems.
What Is an Analog Signal, Really?
Think of a light dimmer switch versus a light that's only on or off. The dimmer can sit at any brightness between fully off and fully bright — 10%, 47.3%, 82% — an infinite number of positions. That's the essence of an analog signal: it can take any value within a continuous range, and it varies smoothly over continuous time.
Compare that to a digital signal, which only recognizes a handful of discrete levels (typically two: HIGH and LOW, or 0 and 1). A digital signal is like a light switch that's only ever fully on or fully off — no in-between.
| Property | Analog Signal | Digital Signal |
|---|---|---|
| Value range | Continuous (infinite resolution) | Discrete (finite levels, usually 2) |
| Time axis | Continuous | Often sampled at discrete instants |
| Noise sensitivity | High — any noise changes the signal's meaning | Low — noise must be large to flip a bit |
| Real-world origin | Direct (sound, light, temperature) | Requires sampling/quantizing an analog source |
| Example device | Microphone output, thermocouple voltage | CPU clock signal, digital bus data |
This is why every microphone, antenna, and sensor produces an analog signal first — a smartphone's ADC (covered later in this unit) converts that analog voltage into digital numbers afterward.
The Building Blocks: Amplitude, Frequency, and Phase
For periodic signals — ones that repeat in a pattern — three quantities describe almost everything you need to know.
Amplitude (A) is the signal's "height" — how strong or weak it is. For a sine wave, it's the peak value measured from zero. A louder guitar note has larger amplitude; a fainter one has smaller amplitude. Amplitude is measured in volts (for voltage signals) and directly relates to power: power is proportional to amplitude squared, so doubling the amplitude quadruples the power delivered to a fixed resistance.
Frequency (f) is how many complete cycles occur per second, measured in hertz (Hz). Period (T) is the time for one cycle, and the two are reciprocals: T = 1/f. FM radio stations broadcast around 88–108 MHz; the electrical mains in most of the world alternates at 50 or 60 Hz.
Phase (φ) describes the signal's position in its cycle at a reference time, relative to another signal of the same frequency. Two waves of the same frequency but different phase are "out of step" with each other — this matters enormously in AC circuit analysis, filters, and oscillator design.
Put together, a sinusoidal signal is written as:
y(t) = A sin(ωt + φ)
where ω = 2πf is the angular frequency in radians per second. This single equation describes an AC mains voltage, an audio tone, and a radio carrier wave — only the numbers change.
Wavelength (λ) applies when a signal travels as a wave through space (radio, light, sound), and relates to frequency through the wave's propagation speed v:
λ = v / f
For electromagnetic waves in free space, v = c ≈ 3 × 10⁸ m/s. A 2.4 GHz Wi-Fi signal has a wavelength of about 12.5 cm.
Common Analog Waveform Shapes
A sine wave is the "purest" waveform — it contains energy at exactly one frequency. Every other periodic waveform (square, triangular, sawtooth) can be built from a sum of sine waves of different frequencies and amplitudes — this is the core idea behind Fourier analysis, which you'll meet again when studying filters.
Worked example: A square wave is turned on and off 1,000 times per second to drive a motor at partial power (this is PWM — pulse width modulation). If the wave is HIGH for 300 µs out of each 1 ms period, the "duty cycle" is 30%, and the motor sees an average voltage of 30% of the supply voltage — even though the instantaneous voltage is always either 0 V or the full supply voltage. This trick of using a fast digital-looking waveform to control an effectively analog quantity (motor speed) is one of the most common bridges between analog and digital worlds.
Shaping Signals: A First Look at Filtering and Modulation
Two operations recur throughout analog electronics, and you'll study both in depth later in this unit:
Filtering selectively passes or blocks certain frequencies. A low-pass filter (a simple resistor-capacitor pair) lets low frequencies through and attenuates high ones — useful for removing hiss from an audio signal. A high-pass filter does the opposite, blocking DC and low-frequency hum while passing higher tones.
Modulation encodes information onto a carrier wave for transmission. Amplitude modulation (AM) varies the carrier's amplitude in step with the message signal; frequency modulation (FM) varies the carrier's frequency instead. AM radio and FM radio are the everyday examples — FM's constant amplitude makes it more resistant to the amplitude-based static that plagues AM.
Real-World Example: A Bench Test
Imagine you connect a function generator to an oscilloscope and set it to produce a 1 kHz sine wave with 5 V amplitude. On the scope screen you'd measure: peak-to-peak voltage of 10 V (from +5 V to −5 V), a period of 1 ms (one division of the screen if timebase is set right), and a frequency readout confirming 1.000 kHz. If you then feed that same signal through a simple RC low-pass filter with a cutoff frequency of 500 Hz, the amplitude at the output would shrink — the signal is being attenuated because 1 kHz is above the filter's cutoff. This is exactly the kind of "predict, measure, explain the mismatch" exercise you'll do constantly in an analog electronics lab.
Why It Matters
Nearly every electronic system that interacts with the physical world begins and ends with analog signals. A smartphone's microphone produces an analog voltage; that voltage gets amplified (analog), filtered (analog), then digitized (ADC) for processing, and finally converted back to analog to drive the speaker. Skipping a solid grounding in amplitude, frequency, and waveform shape makes every later topic in this unit — op-amps, filters, oscillators, ADCs — much harder to understand intuitively.
Key Terms
| Term | Definition |
|---|---|
| Analog signal | A signal that varies continuously in both value and time, representing a physical quantity |
| Amplitude (A) | The peak magnitude of a signal, measured in volts for voltage signals |
| Frequency (f) | Number of complete cycles per second, measured in hertz (Hz) |
| Period (T) | Time taken for one complete cycle; T = 1/f |
| Angular frequency (ω) | Frequency expressed in radians per second; ω = 2πf |
| Phase (φ) | The position of a waveform within its cycle relative to a reference |
| Wavelength (λ) | Physical distance between two identical points on a wave; λ = v/f |
| Duty cycle | Fraction of one period during which a square/pulse wave is HIGH |
| Low-pass filter | Circuit that passes low frequencies and attenuates high frequencies |
| High-pass filter | Circuit that passes high frequencies and attenuates low frequencies |
| Modulation | Varying a carrier wave's amplitude, frequency, or phase to encode information |
Common Mistakes
Misconception 1: "Analog just means old or low-quality, while digital is always better." Why it's wrong: Analog and digital are simply two different ways of representing information, not a quality judgment. Digital signals gain noise immunity by only needing to distinguish two levels, but they lose information through quantization (rounding to discrete levels) and sampling (measuring at discrete time intervals). Correct understanding: Analog signals carry, in principle, infinite resolution and are how nature actually presents information; digital is a convenient, robust encoding created for storage, computation, and noise-resistant transmission — each has appropriate use cases.
Misconception 2: "Frequency and wavelength are the same physical quantity, just measured differently." Why it's wrong: Frequency measures how often something oscillates in time (cycles/second); wavelength measures the physical distance over which one cycle occurs. They're related but not identical. Correct understanding: They're linked through the wave's propagation speed via λ = v/f. For the same frequency, a wave traveling faster (e.g., light in vacuum vs. sound in air) will have a much longer wavelength.
Misconception 3: "A square wave has no frequency components other than its fundamental frequency." Why it's wrong: This confuses "repeats at frequency f" with "contains energy only at frequency f." A square wave is periodic at f, but by Fourier analysis it is actually a sum of a sine wave at f plus odd harmonics (3f, 5f, 7f, ...) at decreasing amplitude. Correct understanding: Only a pure sine wave contains energy at a single frequency. Any other periodic waveform (square, triangular, sawtooth) is a combination of multiple sinusoidal frequency components — this is why square waves need wide-bandwidth circuits to reproduce cleanly.
Comparison and Connections
| Concept | Analog Signal | Digital Signal |
|---|---|---|
| Representation | Continuous voltage/current levels | Discrete binary levels (0/1) |
| Noise handling | Degrades gracefully but any noise is "real" signal corruption | Tolerates noise up to a threshold, then fails catastrophically (bit error) |
| Typical circuits | Amplifiers, filters, oscillators | Logic gates, flip-flops, microcontrollers |
| Where it comes from | Directly from physical sensors (mic, thermocouple, photodiode) | Produced by sampling and quantizing an analog signal (ADC) |
| Waveform | Shape | Typical Use |
|---|---|---|
| Sine | Smooth, single-frequency | AC power, audio tones, RF carriers |
| Square | Abrupt transitions | Digital clocks, PWM |
| Triangular | Linear ramp up/down | Test signals, waveform generators |
| Sawtooth | Linear ramp, instant reset | CRT sweep, synthesizer tones |
Practice Questions
Recall 1: Define amplitude and frequency, and state the SI unit for each. Answer guidance: Amplitude is the peak magnitude of a signal (volts); frequency is cycles per second (hertz).
Recall 2: Write the general equation for a sinusoidal signal and label each symbol. Answer guidance: y(t) = A sin(ωt + φ); A = amplitude, ω = angular frequency (2πf), t = time, φ = phase angle.
Understanding 1: Explain why a digital signal is more resistant to noise than an analog signal, using the idea of discrete vs. continuous levels. Answer guidance: Digital signals only need to distinguish between two ranges (e.g., "high" and "low"); small noise doesn't change which range is detected. Analog signals encode information in the exact voltage value, so any noise directly distorts the represented value.
Understanding 2: Why does a square wave require a wider bandwidth circuit to reproduce faithfully than a sine wave of the same fundamental frequency? Answer guidance: A square wave is a sum of a fundamental sine wave plus many odd harmonics; a circuit must pass those higher-frequency harmonics too, or the square wave's sharp edges get rounded off.
Application 1: A function generator outputs a sine wave with period 2 ms. Calculate its frequency and angular frequency. Answer guidance: f = 1/T = 1/0.002 = 500 Hz; ω = 2πf ≈ 3141.6 rad/s.
Application 2: A PWM signal driving an LED has a duty cycle of 25% at a supply of 12 V. What average voltage does the LED effectively see? Answer guidance: Average voltage ≈ duty cycle × supply = 0.25 × 12 V = 3 V.
Analysis 1: Compare and contrast how amplitude modulation (AM) and frequency modulation (FM) each encode a message signal onto a carrier, and explain why FM is generally less susceptible to noise. Answer guidance: AM varies carrier amplitude with the message; noise (which mostly adds amplitude spikes) directly corrupts the AM signal. FM varies carrier frequency instead, keeping amplitude constant, so amplitude-based noise can largely be stripped away by a limiter before demodulation.
Analysis 2: A student claims that because a signal is sampled every microsecond by a computer's ADC, it is now a "perfectly accurate" analog signal. Evaluate this claim. Answer guidance: False — sampling converts a continuous-time analog signal into a discrete-time, quantized digital approximation. Some information is inevitably lost (quantization error and any content above the Nyquist frequency), regardless of how frequently it is sampled.
FAQ
Q1: Is sound naturally analog or digital? A: Sound is naturally analog — it's a continuous pressure wave in air. A microphone converts it to a continuous (analog) voltage; only later is it sampled and quantized into digital audio if needed.
Q2: Why do engineers still use analog circuits if digital systems are so powerful? A: Every sensor and every real-world actuator (speaker, motor, antenna) is inherently analog. Digital systems need analog front-ends (amplifiers, filters) to interface with the physical world, and some tasks — like high-frequency RF amplification — are still done more efficiently in the analog domain.
Q3: What's the difference between period and frequency? A: They're reciprocals. Period (T) is the time for one cycle in seconds; frequency (f) is the number of cycles per second. T = 1/f.
Q4: Why does amplitude relate to power as a square, not linearly? A: Power delivered to a resistance R is P = V²/R. Since voltage is squared in the power formula, doubling the amplitude quadruples the power.
Q5: How is phase different from frequency? A: Frequency tells you how fast a signal oscillates; phase tells you where in its cycle the signal currently is, relative to a reference. Two signals can have identical frequency but different phase (they're "shifted" relative to each other in time).
Quick Revision
- Analog signals vary continuously in both value and time; digital signals use discrete levels.
- y(t) = A sin(ωt + φ) describes any sinusoidal signal: amplitude, angular frequency, time, phase.
- f = 1/T (frequency is the reciprocal of period); ω = 2πf.
- λ = v/f relates wavelength to frequency through propagation speed.
- Power ∝ amplitude² — doubling amplitude quadruples power.
- Sine waves contain a single frequency; square/triangular/sawtooth waves are sums of multiple harmonics.
- Duty cycle = fraction of period a pulse/square wave spends HIGH; determines average PWM voltage.
- Low-pass filters pass low frequencies; high-pass filters pass high frequencies.
- AM varies carrier amplitude with the message signal; FM varies carrier frequency.
- FM resists amplitude noise better than AM because the message isn't carried in the amplitude.
- Every physical sensor produces an analog signal first, even in "all-digital" systems.
- Sampling and quantizing an analog signal (ADC) always loses some information.
Related Topics
Prerequisites: Basic AC circuit concepts (voltage, current, resistance), trigonometric functions (sine, cosine)
Related: Filters and Amplifiers, Analog Communication Systems, Noise and Interference
Next: Operational Amplifiers, Filters and Amplifiers