Index: Introduction to Digital Filters with Audio Applications
Introduction to Digital Filters with Audio Applications
Sinusoids as Eigenfunctions of LTI Systems
Sinusoids as Eigenfunctions of LTI Systems
Proof Using Complex Variables
A sinusoid is any function of the form A sin(ω t+φ), where t is the independent variable, and A, ω, φ are fixed parameters of the sinusoid called the amplitude, (radian) frequency, and phase, respectively. Sinusoidal motion is produced by any 'pure' vibration, such as that of an ideal tuning fork or mass-spring system. — Click for https://ccrma.stanford.edu/~jos/mdft/Sinusoids.html
Search JOS Website
JOS Home Page
JOS Online Publications
Index of terms in JOS Website
Index: Introduction to Digital Filters with Audio Applications
Introduction to Digital Filters with Audio Applications
where and are known. We now have two equations in two
unknowns which are readily solved by (1) squaring and adding both
sides to eliminate , and (2) forming a ratio of both sides of
Eq.(A.4) to eliminate . This gives
for any values of and . Since
, we have
. To impose and , a
four-quadrant arctangent must be used, normally
written atan2(y,x) in computer languages.
Check Your Understanding
Exercise 1Multiple Choice
In the trigonometric proof, one arrives at the two equations A cos(φ) = x and A sin(φ) = y with x and y known. How is the amplitude A obtained?
A = x + y
A = ±√(x2 + y2), by squaring and adding both equations to eliminate φ
A = x/y, by dividing the equations
A = √(x2 − y2)
Use the identity cos2φ + sin2φ = 1.
One combination of the equations removes φ; the other removes A.
Exercise 2Multiple Choice
Why must a four-quadrant arctangent (atan2(y,x) in computer languages) be used to recover the phase φ, instead of the ordinary arctangent of y/x?
Because the ordinary arctangent is numerically unstable
Because tan−1(y/x) cannot distinguish (y, x) from (−y, −x), returning φ only in [−π/2, π/2), while atan2 gives φ in [−π, π) with A ≥ 0
Because atan2 also returns the amplitude A
Because the ordinary arctangent works only for positive y
The ratio y/x loses the individual signs of y and x.
A phase in the second or third quadrant cannot come out of a plain arctangent.