AMME1705 · Introduction to Electromechanical Systems
AC Signals & Sinusoids
AC Signals & Sinusoids is the Week 9 topic of AMME1705 Introduction to Electromechanical Systems at the University of Sydney, where every time-varying voltage is written in the one standard form V(t) = VDC + A sin(2πf t + φ). You learn to read the offset, amplitude, frequency and phase off an oscilloscope trace, add two same-frequency sinusoids using a sine/cosine split with atan2, and differentiate a sinusoid to get a capacitor's current.
It is a compact, almost entirely numeric part of the unit, and it feeds directly into the paper-based final exam, which is worth 33% of the course.
What this chapter covers
- 01Write any AC voltage in the canonical form V(t) = V_DC + A sin(2πf t + φ), with correct units for each symbol
- 02Distinguish DC offset (average), amplitude (offset-to-peak) and peak-to-peak (2A)
- 03Read amplitude, offset and frequency off a trace: A = (max−min)/2, V_DC = (max+min)/2, f = 1/T
- 04Relate angular and ordinary frequency with ω = 2πf and period T = 1/f
- 05Recover the phase φ from a known point, and pick the correct ± branch using rising / falling slope
- 06Add two same-frequency sinusoids via X = A cosφ, Y = A sinφ, then A = √(X²+Y²), φ = atan2(Y, X)
- 07Use atan2 (not plain arctan) so the phase lands in the correct quadrant
- 08Differentiate a sinusoid: amplitude scales by ω and the phase leads by 90°
- 09Apply I = C dV/dt to find the current a capacitor draws on a sinusoidal voltage
Read amplitude, offset, frequency and phase off a scope trace
- +1Frequency from the period: f = 1/T = 1/(5.0×10⁻³ s) = 200 Hz.
- +1Amplitude is offset-to-peak, half the swing: A = (V_max − V_min)/2 = (3.0 − (−1.0))/2 = 2.0 V.
- +1DC offset is the midline: V_DC = (V_max + V_min)/2 = (3.0 + (−1.0))/2 = 1.0 V.
- +1Angular frequency: ω = 2πf = 2π(200) = 1257 rad/s (4 s.f.).
- +1Phase from t = 0: sinφ = (V(0) − V_DC)/A = (2.0 − 1.0)/2.0 = 0.5. The trace is rising, so take the ascending branch: φ = +π/6 = +0.524 rad (+30°).
Key terms
- DC offset (V_DC)
- The constant average level a waveform rides on, in volts (V); read as V_DC = (max+min)/2. Zero for a pure AC signal.
- Amplitude (A)
- The offset-to-peak height of a sinusoid in volts (V) — the distance from the midline to a crest, which is HALF the peak-to-peak swing (2A).
- Frequency (f) and period (T)
- f is cycles per second in hertz (Hz = 1/s); T = 1/f is the time for one cycle in seconds (s).
- Angular frequency (ω)
- Frequency measured in radians per second (rad/s), ω = 2πf. It is the coefficient of t inside the sine.
- Phase (φ)
- The horizontal shift of the sinusoid in radians (rad), measured relative to a sine wave; a positive φ shifts the wave earlier.
- atan2(Y, X)
- A two-argument arctangent returning the angle of the point (X, Y) in the correct quadrant (range −π to π). Unlike arctan(Y/X) it keeps the signs, so it never loses 180°.
- Capacitor current (I = C dV/dt)
- A capacitor's current follows the rate of change of its voltage; for a sinusoidal voltage this gives peak current ωCA with the current leading the voltage by 90°.
AC Signals & Sinusoids FAQ
Is the amplitude the same as the peak-to-peak voltage?
No. In V(t) = V_DC + A sin(2πf t + φ) the amplitude A is measured from the midline (the DC offset) up to a peak — it is offset-to-peak. The full top-to-bottom swing is the peak-to-peak value, which equals 2A. Reporting 2A when A is asked (or the reverse) is one of the most common lost marks on this topic.
Why use atan2 instead of arctan for the phase?
When you add two same-frequency sinusoids you get a sine part X = A cosφ and a cosine part Y = A sinφ, and the phase is φ = atan2(Y, X). Plain arctan(Y/X) only returns angles between −90° and +90°, so it cannot tell a first-quadrant angle from a third-quadrant one and can be wrong by 180°. atan2 takes X and Y separately, keeps their signs, and returns the correct quadrant.
Can AI help me with AC signals and sinusoids in AMME1705?
Yes — for understanding, not for doing your assessed work for you. Sia can explain step by step how to read amplitude, offset, frequency and phase off a trace, why differentiating a sinusoid adds a 90° lead, or how the sine/cosine split with atan2 combines two waves, and it can walk you through practice problems with your own numbers. It will not hand you answers to a graded quiz, lab or exam, and it cannot promise any particular mark or grade. Use it to check your method and build intuition, then confirm all assessment rules on your current Canvas.
Studying with AI? Sia — free AI electrical engineering tutor works through AMME1705 step by step.
Exam move
Treat this as a formula-and-convention topic rather than a heavy-derivation one: the marks come from stating the four parameters correctly and getting the sign of the phase right. Put the read-off formulae (A = (max−min)/2, V_DC = (max+min)/2, f = 1/T, ω = 2πf), the sine/cosine split (X = A cosφ, Y = A sinφ → A = √(X²+Y²), φ = atan2(Y, X)) and the derivative rule (×ω amplitude, +90° phase) on your one A4 note sheet, and drill a few numeric trace-reading and sinusoid-adding problems with your own numbers until the method is automatic. Because the final exam demands specified precision (for example to the nearest 1 Hz or 0.1 V), practise rounding cleanly and pacing at about 1.5 minutes per mark, and confirm the exact exam conditions and materials on your current Canvas.