Intuition What this page is for
The parent note gave you the rule — just add the waves . But "just add" hides a jungle of cases: two pulses of the same sign, of opposite signs, waves exactly in phase , exactly out of phase , partway between, phase angles bigger than 18 0 ∘ , negative phase shifts, and the boundary case of equal-and-opposite cancellation. This page walks every one of them so you never meet a problem you haven't already seen solved.
Before anything, let us make sure the symbols are earned.
A res , angular frequency ω , phase difference ϕ , and resultant phase α — in plain words
Amplitude A = the biggest push a single wave can give a point, measured from the flat resting line. Picture the height of a swing at its highest — that height is A .
Angular frequency ω = how fast the wave cycles , measured in radians per second. In y = A sin ( ω t ) , the quantity ω t is the angle (in radians) the wave has swept since t = 0 . One full cycle happens when ω t grows by 2 π . It is "angular" because we track the wave as an angle going around a circle (see the phasor idea below).
Phase difference ϕ = how far one wave is shifted along in its cycle compared to the other , measured as an angle. A full cycle is 36 0 ∘ = 2 π rad . If wave 2 starts its up-swing when wave 1 is already a quarter of the way through, wave 2 leads by ϕ = 9 0 ∘ .
Resultant amplitude A res = the biggest push of the single combined wave you get after superposing the two — the height of the summed wave, not of either original.
Resultant phase α = the direction (phase angle) of the combined wave , measured from wave 1. When you add the two arrows and get one green arrow (Figure s01), α is how tilted that green arrow is away from wave 1. A positive α means the combined wave leads (starts its up-swing earlier than) wave 1; negative means it lags .
Common mistake Degrees vs radians — pick one, convert cleanly
Trig tables and everyday intuition speak degrees (9 0 ∘ , 18 0 ∘ ). The machinery (ω t , calculus, sin in code) speaks radians . The master formula works in either — as long as you feed cos an angle in the same unit your calculator is set to.
Convention on this page: we state phase differences in degrees for readability, but the moment we plug into any sin , cos , or arctan we write out the conversion to radians explicitly using π rad = 18 0 ∘ (so 18 0 ∘ = π , 9 0 ∘ = 2 π , 6 0 ∘ = 3 π , 24 0 ∘ = 3 4 π ). Whenever ω t appears it is always in radians . Watch for the phrase "convert:" in the steps — that is where degrees become radians.
angle for a shift?
A wave repeats forever, exactly like going around a circle repeats forever. So "how far along am I?" is naturally an angle , not a distance. This is the whole reason the phasor picture works: each wave is an arrow (a "phasor") of length equal to its amplitude, spun to the angle of its phase, and adding waves = adding arrows tip-to-tail .
Intuition How to read Figure s01 (the phasor sum)
In the figure, the blue arrow is wave 1, drawn along the horizontal because we measure everything relative to it (its phase is our zero). The yellow arrow is wave 2, tilted up by the phase difference ϕ (red angle mark) and laid tip-to-tail on the end of the blue one. The green arrow from the very start to the final tip is the resultant — its length is A res and its tilt is the resultant phase α (white dotted angle). Everything numeric on this page is just measuring that green arrow.
We will use one master formula, taken from the parent note and derived by cosine rule on those two arrows :
cos ϕ — the amplitude term
When you build a triangle from two arrows separated by angle ϕ , the "law of cosines" — the generalisation of Pythagoras to non-right triangles — carries exactly one cos of the angle between the arrows. It answers: how much do the two pushes reinforce vs oppose? At ϕ = 0 , cos = + 1 (full reinforce); at ϕ = 18 0 ∘ , cos = − 1 (full oppose).
tan α = A 1 + A 2 cos ϕ A 2 sin ϕ comes from — build it yourself
Look at Figure s01 and drop the two arrows onto x–y axes.
Wave 1 lies flat along the horizontal, so its components are ( A 1 , 0 ) .
Wave 2 is tilted up by ϕ , so by "adjacent = length·cos , opposite = length·sin " its components are ( A 2 cos ϕ , A 2 sin ϕ ) .
Adding arrows = adding components. The green resultant therefore has:
horizontal part = A 1 + A 2 cos ϕ (both arrows' rightward pushes),
vertical part = A 2 sin ϕ (only wave 2 has a vertical push).
The green arrow makes angle α with the horizontal, and for any arrow tan ( tilt ) = horizontal part vertical part (opposite over adjacent). That is exactly the formula:
tan α = horizontal vertical = A 1 + A 2 c o s ϕ A 2 s i n ϕ .
So tan α answers a different question from A res : not "how long is the green arrow?" but "which way does it point?"
tan α trap — resolve the quadrant with atan2
tan repeats every 18 0 ∘ , so plain arctan only ever returns an angle between − 9 0 ∘ and + 9 0 ∘ . That is fine only when the denominator (horizontal part) A 1 + A 2 cos ϕ is positive (resultant arrow points rightward). If that denominator is negative (arrow points leftward, happens when ϕ is large and A 2 is big), arctan gives an answer 18 0 ∘ off. The robust rule is atan2(numerator, denominator) — it looks at the sign of both the vertical part A 2 sin ϕ and the horizontal part A 1 + A 2 cos ϕ and returns the true angle in the full range ( − 18 0 ∘ , 18 0 ∘ ] . Convention: report α in ( − 18 0 ∘ , 18 0 ∘ ] ; a positive α means the resultant leads wave 1, a negative α means it lags .
Every superposition problem you will meet is one of these cells. The examples below are labelled with the cell they hit.
#
Case class
What's special
Example
A
1-D signed sum, same sign
pulses reinforce, no angles
Ex 1
B
1-D signed sum, opposite sign
partial / total cancellation
Ex 1, Ex 2
C
Degenerate: equal & opposite
A res = 0 , boundary case
Ex 2
D
In phase, ϕ = 0
limiting max, A res = A 1 + A 2
Ex 3
E
Out of phase, ϕ = 18 0 ∘
limiting min, $A_{\text{res}}=
A_1-A_2
F
Quarter phase, ϕ = 9 0 ∘
phasors perpendicular ⇒ Pythagoras
Ex 4
G
General angle 0 < ϕ < 18 0 ∘
full cosine rule needed
Ex 5
H
Angle beyond 18 0 ∘ (ϕ > π )
sign of cos flips, cos-half trap
Ex 6
I
Resultant phase (direction, not size)
uses tan α / atan2
Ex 7
J
Real-world word problem
translate words → ϕ
Ex 8
K
Exam twist: find ϕ from given A res
invert the formula
Ex 9
L
Negative phase ϕ < 0
lag; same amplitude, flipped α
Ex 10
Worked example Example 1 — Two pulses meet (same-sign then opposite-sign)
At point P, at one instant pulse 1 gives + 6 cm and pulse 2 gives + 2 cm . A moment later pulse 1 gives + 6 cm and pulse 2 gives − 2 cm . Find the net displacement at each instant.
Forecast: Guess both before reading — do the numbers just add?
Instant 1: y = y 1 + y 2 = 6 + 2 = + 8 cm .
Why this step? In one dimension a wave's displacement is a signed number (up = + , down = − ). Superposition says the medium does both pushes at once, so we add the signed numbers — no angles needed because there is only one line to move along.
Instant 2: y = 6 + ( − 2 ) = + 4 cm .
Why this step? Same rule; the negative sign of pulse 2 means it pushes down while pulse 1 pushes up , so they partially cancel.
Verify: Both answers are smaller-or-equal to the total available push 6 + 2 = 8 . Same-sign gave the max (8 ), opposite-sign gave less (4 ). Units stay cm throughout. ✓
Worked example Example 2 — Equal and opposite (the zero case)
Pulse 1 gives + 5 cm , pulse 2 gives − 5 cm at the same point and instant. Net?
Forecast: Does the string get destroyed ? Does energy vanish?
y = 5 + ( − 5 ) = 0 cm .
Why this step? Signed addition again. The two pushes are exactly opposite, so at this instant the point sits at the flat line.
Why this is only a snapshot: The point is momentarily flat but moving — energy is stored as kinetic energy of the string, not lost. A moment later the pulses separate and each re-emerges at full 5 cm .
Verify: This is the boundary between reinforcing and cancelling. Note 0 is achievable only when the two displacements are exactly equal in size and opposite in sign — that is the degenerate cell C. ✓
Worked example Example 3 — In phase vs out of phase (limits of the master formula)
Two waves, A 1 = 4 , A 2 = 3 (same units). Find A res for (a) ϕ = 0 , (b) ϕ = 18 0 ∘ .
Forecast: What is the biggest and smallest a 4 and a 3 can make together?
(a) ϕ = 0 : convert: 0 ∘ = 0 rad , so cos 0 = + 1 , giving
A res = 4 2 + 3 2 + 2 ( 4 ) ( 3 ) ( 1 ) = 16 + 9 + 24 = 49 = 7.
Why this step? At ϕ = 0 the two arrows point the same way (in Figure s01 imagine collapsing the red angle to zero so blue and yellow line up): the answer is simply A 1 + A 2 = 7 . This is the maximum — constructive interference.
(b) ϕ = 18 0 ∘ : convert: 18 0 ∘ = π rad , so cos π = − 1 , giving
A res = 16 + 9 + 2 ( 4 ) ( 3 ) ( − 1 ) = 25 − 24 = 1 = 1.
Why this step? At ϕ = 18 0 ∘ the arrows point opposite ways; the answer is ∣ A 1 − A 2 ∣ = ∣4 − 3∣ = 1 . This is the minimum — destructive interference. It is not zero here because the amplitudes are unequal.
Verify: A res always lands in the band [ ∣ A 1 − A 2 ∣ , A 1 + A 2 ] = [ 1 , 7 ] . Every other phase gives a value inside this band. ✓
Intuition How to read Figure s02 (the amplitude-vs-phase curve)
This plots A res (vertical) against the phase difference ϕ from 0 to 36 0 ∘ (horizontal), for the same A 1 = 4 , A 2 = 3 . The blue curve rides between two dashed guides: the green line at 7 (the maximum A 1 + A 2 , touched at ϕ = 0 and 36 0 ∘ ) and the red line at 1 (the minimum ∣ A 1 − A 2 ∣ , touched at ϕ = 18 0 ∘ ). The three coloured dots mark the special cases we solve: green (ϕ = 0 → 7 ), yellow (ϕ = 9 0 ∘ → 5 , Example 4), red (ϕ = 18 0 ∘ → 1 ). The whole point: no phase can ever push A res outside the band [ 1 , 7 ] — the curve is trapped between the dashed lines.
Worked example Example 4 — Ninety degrees ⇒ Pythagoras
y 1 = 4 sin ω t , y 2 = 3 sin ( ω t + 9 0 ∘ ) , where ω is the shared angular frequency (both waves cycle at the same rate, so their phasors spin together and the difference ϕ = 9 0 ∘ stays fixed). Find A res .
Forecast: The arrows are at right angles — what shape does that make?
Draw the phasors: arrow 1 (length 4) along the reference, arrow 2 (length 3) turned 9 0 ∘ from it.
Why this step? A 9 0 ∘ phase difference means the second arrow points straight up relative to the first — they are perpendicular. (Because both share ω , spinning the whole picture does not change this right angle.)
Tip-to-tail they form a right triangle with legs 4 and 3. Convert: 9 0 ∘ = 2 π rad , and cos 2 π = 0 , so the cosine term vanishes:
A res = 4 2 + 3 2 = 25 = 5.
Why this step? For a right angle, the law of cosines loses its cosine term (cos 9 0 ∘ = 0 ) and reduces to plain Pythagoras.
Verify: Check against the master formula: 16 + 9 + 2 ( 4 ) ( 3 ) cos 2 π = 25 + 24 ( 0 ) = 5 . ✓ Falls inside the band [ 1 , 7 ] . ✓
Worked example Example 5 — General angle, full cosine rule
y 1 = 4 sin ω t , y 2 = 3 sin ( ω t + 6 0 ∘ ) . Find A res .
Forecast: 6 0 ∘ is between "aligned" and "perpendicular" — expect an answer between 5 and 7.
Use the master formula. Convert: 6 0 ∘ = 3 π rad , and cos 3 π = 0.5 :
A res = 4 2 + 3 2 + 2 ( 4 ) ( 3 ) ( 0.5 ) .
Why this step? The arrows are neither aligned nor perpendicular, so we need the full law of cosines — the cos ϕ term measures the partial reinforcement.
A res = 16 + 9 + 12 = 37 ≈ 6.08.
Why this step? Just arithmetic; 2 ⋅ 4 ⋅ 3 ⋅ 0.5 = 12 .
Verify: 6.08 lies between the ϕ = 9 0 ∘ answer (5) and the ϕ = 0 answer (7), exactly as forecast — smaller ϕ ⇒ more reinforcement. ✓
Worked example Example 6 — When
ϕ > 18 0 ∘
Two equal waves, A = 2 , with phase difference ϕ = 24 0 ∘ . Find A res .
Forecast: People often plug into 2 A cos ( ϕ /2 ) and get a negative number — is that allowed?
Equal amplitudes, so use A res = 2 A cos ( ϕ /2 ) . Convert: ϕ = 24 0 ∘ = 3 4 π rad , so ϕ /2 = 12 0 ∘ = 3 2 π rad , and cos 3 2 π = − 0.5 :
2 ( 2 ) cos ( 2 24 0 ∘ ) = 4 cos 12 0 ∘ = 4 ( − 0.5 ) = − 2.
Why this step? The formula gives − 2 , but amplitude cannot be negative — a length is never below zero.
Fix — take the magnitude: the physical amplitude is A res = ∣ − 2∣ = 2 .
Why this step? cos ( ϕ /2 ) went negative because ϕ /2 = 12 0 ∘ is past 9 0 ∘ , where cosine crosses from + to − . A negative cos ( ϕ /2 ) does not mean a negative length — length is always positive. What the minus sign actually encodes is that the resultant arrow has flipped to point the other way (an extra 18 0 ∘ has been added to the resultant's own phase). So we read off the amplitude as the absolute value ∣2 A cos ( ϕ /2 ) ∣ , and remember the flip separately if we need the direction.
Safer route — use the sign-stable master formula , which never produces a spurious minus because the whole expression sits under a square root:
A res = 2 2 + 2 2 + 2 ( 2 ) ( 2 ) cos 3 4 π = 4 + 4 + 8 ( − 0.5 ) = 8 − 4 = 4 = 2.
Why this step? Here cos ϕ (not cos ϕ /2 ) enters, and the square root forces a non-negative answer automatically — so for ϕ > 18 0 ∘ prefer this form and you sidestep the trap entirely.
Verify: Both routes agree: magnitude 2 . ✓ And 2 sits inside the band [ ∣2 − 2∣ , 2 + 2 ] = [ 0 , 4 ] . ✓
2 A cos ( ϕ /2 ) can be negative, so amplitude is negative."
Why it feels right: the formula literally spat out − 2 .
The fix: amplitude is the magnitude ∣2 A cos ( ϕ /2 ) ∣ . A negative sign just flags a 18 0 ∘ flip in the resultant's direction, not a negative size. Always take the absolute value, or use the sign-safe form (Step 3 above), which is the reliable choice whenever ϕ > 18 0 ∘ .
Worked example Example 7 — Where does the summed arrow point?
y 1 = 4 sin ω t , y 2 = 3 sin ( ω t + 9 0 ∘ ) . Find the resultant phase α (the tilt of the green arrow relative to wave 1).
Forecast: The bigger arrow (4) points along the reference; the smaller (3) tilts it up — expect a modest angle under 4 5 ∘ .
Use tan α = A 1 + A 2 cos ϕ A 2 sin ϕ — the formula we built from components above. Convert: ϕ = 9 0 ∘ = 2 π rad , so sin 2 π = 1 and cos 2 π = 0 :
tan α = 4 + 3 c o s 9 0 ∘ 3 s i n 9 0 ∘ = 4 + 0 3 ( 1 ) = 4 3 = 0.75.
Why this step? Numerator = the vertical part of the green arrow (only wave 2 contributes up); denominator = the horizontal part (wave 1 plus wave 2's sideways bit). Their ratio is opposite-over-adjacent = the tilt. This answers "which direction?", a different question from Example 4's "how long?".
Here the horizontal part A 1 + A 2 cos ϕ = 4 is positive , so plain arctan is safe (no quadrant flip). α = arctan ( 0.75 ) ≈ 36.8 7 ∘ .
Why this step? arctan asks "which angle has tangent 0.75 ?" — it undoes the tan. Both parts positive ⇒ first quadrant ⇒ atan2(3,4) agrees with arctan(0.75), no correction needed.
Verify: The full wave is y = 5 sin ( ω t + 36.8 7 ∘ ) . Check the size matches Ex 4 (5 ) and the angle is under 4 5 ∘ as forecast (because wave 1 is the longer arrow, it "wins" the direction). ✓
Worked example Example 8 — Two loudspeakers (translate words →
ϕ )
Two loudspeakers play the same pure tone in phase, each producing sound of amplitude A = 1 (arbitrary units) at your ear. Because you stand closer to one, its sound travels an extra half-wavelength (λ /2 ) before reaching you. What amplitude do you hear?
Forecast: Half a wavelength extra — louder or dead-silent?
Convert path difference to phase: a full wavelength λ is one full cycle = 36 0 ∘ = 2 π rad . So an extra λ /2 is
ϕ = λ λ /2 × 2 π rad = π rad = 18 0 ∘ .
Why this step? Phase difference ϕ = λ 2 π × ( path difference ) — extra distance travelled is time travelled is phase accumulated. This is the bridge from geometry (metres) to phase (radians).
Equal amplitudes, ϕ = π rad : A res = 2 A cos ( π /2 ) = 2 ( 1 ) ( 0 ) = 0.
Why this step? cos ( π /2 ) = cos 9 0 ∘ = 0 , so total cancellation — a "dead spot".
Verify: Master formula: 1 + 1 + 2 ( 1 ) ( 1 ) cos π = 2 − 2 = 0 . ✓ You hear silence there — a real, hearable effect in Interference of waves . Energy isn't lost; it is louder elsewhere.
Worked example Example 9 — Given the answer, find the phase
Two equal waves of amplitude A = 3 combine to give A res = 3 . What is the phase difference ϕ (smallest positive value)?
Forecast: The result equals a single wave's amplitude — the two must be partly fighting. Guess whether ϕ is under or over 9 0 ∘ .
Set the equal-amplitude formula equal to the given result:
2 A cos ( 2 ϕ ) = A res ⇒ 2 ( 3 ) cos ( 2 ϕ ) = 3 ⇒ cos ( 2 ϕ ) = 0.5.
Why this step? We know the output and one input; we solve backwards for ϕ . This is why arccos exists — it asks "which angle has this cosine?"
2 ϕ = arccos ( 0.5 ) = 6 0 ∘ = 3 π rad ⇒ ϕ = 12 0 ∘ = 3 2 π rad .
Why this step? Multiply back by 2. Since cos is positive and we want the smallest positive angle, 6 0 ∘ is the principal value.
Verify: Plug back: 2 ( 3 ) cos 6 0 ∘ = 6 ( 0.5 ) = 3 = A res . ✓ And 12 0 ∘ > 9 0 ∘ , matching the forecast that the waves partly oppose.
Worked example Example 10 — Wave 2 lags (
ϕ < 0 )
y 1 = 4 sin ω t , y 2 = 3 sin ( ω t − 9 0 ∘ ) , so ϕ = − 9 0 ∘ (wave 2 lags wave 1). Find A res and the resultant phase α .
Forecast: Compared to Example 7 (lead of + 9 0 ∘ ), will the loudness change? Will the direction change?
Amplitude: convert: − 9 0 ∘ = − 2 π rad , and since cos is even , cos ( − 2 π ) = cos 2 π = 0 , so
A res = 4 2 + 3 2 + 2 ( 4 ) ( 3 ) ( 0 ) = 5.
Why this step? Flipping the sign of ϕ does not change cos ϕ , so the amplitude is identical to Example 7 — a lag sounds exactly as loud as a lead.
Direction: convert: sin ( − 2 π ) = − 1 , cos ( − 2 π ) = 0 , so
tan α = 4 + 3 c o s ( − 2 π ) 3 s i n ( − 2 π ) = 4 + 0 3 ( − 1 ) = − 0.75.
The horizontal part 4 is positive, so atan2(-3, 4) gives α = − 36.8 7 ∘ .
Why this step? sin is odd (sin ( − 2 π ) = − sin 2 π ), so the vertical part flips sign while the horizontal part stays — the resultant tilts down instead of up. Same size, mirrored direction.
Verify: A res = 5 matches Example 7. The phase α = − 36.8 7 ∘ is exactly the negative of Example 7's + 36.8 7 ∘ — the mirror image, as expected for ϕ → − ϕ . ✓
Recall Forecast: waves of amplitude 5 and 5 with
ϕ = 12 0 ∘ . Predict A res , then check.
Forecast: partly opposing, so somewhere between 0 and 10, below 5. Verify: convert 12 0 ∘ = 3 2 π , so 2 ( 5 ) cos 6 0 ∘ = 10 ( 0.5 ) = 5 . Exactly 5 — the crossover point. ✓
Recall Which cell needs no angles at all?
Cells A, B, C — pure 1-D signed addition of displacements.
Path difference of λ /2 corresponds to what phase difference? 18 0 ∘ = π rad (half a cycle).
Why can 2 A cos ( ϕ /2 ) come out negative, and what do you do? Because
cos goes negative past
9 0 ∘ ; the minus flags a
18 0 ∘ flip in direction, so take the absolute value (or use the sign-safe
form) for the amplitude.
For ϕ = 9 0 ∘ the amplitude formula reduces to what? Pythagoras,
A res = A 1 2 + A 2 2 , because
cos 9 0 ∘ = 0 .
What band must A res always lie in? Between ∣ A 1 − A 2 ∣ and A 1 + A 2 .
Which formula gives the direction of the resultant, and where does it come from? tan α = A 1 + A 2 cos ϕ A 2 sin ϕ , from vertical-over-horizontal components of the summed arrow; use atan2 when the denominator is negative.
Does flipping the sign of ϕ change the loudness? No — cos is even, so A res is unchanged; only α flips sign (because sin is odd).
What is ω in y = A sin ( ω t ) ? The angular frequency (rad/s); ω t is the angle swept, one cycle per 2 π .
What does the resultant phase α mean physically? The tilt/direction of the combined wave relative to wave 1 — positive means it leads, negative means it lags.
Interference of waves — Ex 8's dead-spot is interference in the flesh.
Phasor method — every cell here is one arrow-sum picture.
Beats — what happens when ϕ drifts in time (frequencies differ).
Standing waves — the ϕ = 18 0 ∘ cancellation, fixed in space.
Simple Harmonic Motion — each wave at a point is an SHM; we added SHMs.
Superposition principle — the parent rule these examples exercise.