1. Trigonometric integrals and AM radio.
This activity is based on How to Tune a Radio by Clark Benson from the University of Arizona and The National Security Agency, found in Applications of Calculus, Philip Straffin, Editor. Published by the Mathematical Association of America, MAA Notes, Vol. 29, 1993.
(a)
What is an
amplitude modulated
signal, or AM signal? The idea is as follows. Consider the function
for a kind of big
. For example plot
over
.
> plot(sin(20*t),t=0..2*Pi):
You should observe a high frequency (small period, period =
) wave. Let's think of this as a carrier wave, that is a wave that can be used to transport other signals. To do this we consider functions like
where
is slowly varying in comparison to
. Do this for the functions below.
Submission (a):
Plot
,
, and
over
. Explain how you can find
,
, and
hidden in the graphs.
Submission worksheet:
>
(b1)
A useful trigonometric integral. First we will need the fact that
,
.
Submission (b1):
Plot
on
for
and
. Argue from the graphs that
. Confirm this for yourself with a paper and pencil calculuation of the integral.
Submission worksheet:
>
(b2)
Other useful trigonometric integrals. We will also need the facts that
and
, for
along with
and
for
, ...
Submission (b2):
Using the half-angle identities or the product to sum trigonometric identities along with the result from (b1) above convince yourself of each of these identities. Also use Maple to evaluate
and
, and
.
(If you don't know the identities and have no clue where to find them, try using a search engine (I like google) on the www.)
Submission worksheet:
>
(c)
Using these ideas to broadcast and RECEIVE signals. Suppose we have 3 radio stations, WAAA, WBBB and WCCC all broadcasting some signal, and each is broadcasting a signal that we call
,
and
respectively. Our radios at home then receive the superimposed signal, that is
and how is it exactly that we are able to tune in to say a talk show on WAAA which is
, or some music on WBBB, which is
or the Brewers game on WCCC, which is
. The surprising answer is given by trigonometric integrals. We begin by assigning each of WAAA, WBBB and WCCC their own, unique carrying signal. Suppose WAAA's is
, WBBB's is
and WCCC's is
. Now we require that each send their signals as a sum of sin functions (not as restrictive a condition as it sounds) with much lower frequencies than their carrying frequenies. Let's consider a specific example:
,
,
.
Then WAAA broadcasts
, WBBB broadcasts
and WCCC broadcasts
.
Submission (c):
Submit the t
hree separate graphs. The first should be
and
over
, the second
and
over
, and the third
and
over
. What do you observe?
Submission worksheet:
>
(d) More with the example. The superimposed signal our radio receives is:
Recall, the idea is that we
know
that each station will send
, but that we
don't know
what the
are. Here's the way to get them. Let's focus on WAAA. We would like to determine,
,
and
. To get
we simply multiply
by
, where recall 8 was the carrying frequency assigned to WAAA. Now integrate from 0 to
. Let's let Maple to this and find out if we get
,
and
.
> f := t -> (3*sin(t)-2*sin(2*t))*sin(8*t) + (5*sin(t)+6*sin(2*t))*sin(16*t) + (4*sin(t)+7*sin(2*t)+3*sin(3*t))*sin(24*t):
> (-4/Pi)*Int(f(t)*cos(9*t),t=0..Pi);
> (-4/Pi)*int(f(t)*cos(9*t),t=0..Pi);
Wow, you might not want to try that one at home! What changes when we want to find a[2]? The answer is not much, we simply do everything as above except we use
instead (10 = 8 + 2).
> (-4/Pi)*int(f(t)*cos(10*t),t=0..Pi);
Finally, to get a[3]:
> (-4/Pi)*int(f(t)*cos(11*t),t=0..Pi);
So, we now know, that WAAA broadcast
, which is music to the ears.
Submission (d):
For the above f(t), retrieve the broadcasts from WBBB and WCCC. Suppose WBBB's signal was
. Write the new form of
. What integral would you calculate to recover the coefficient
in this signal. Get Maple to perform this integration too.
Submission worksheet:
>
(e)
Where do we use the trigonometric identities? Consider WAAA's signal. Recall that we multiplied f(t) by
,
and
respectively to retrieve all the necessary coefficients. Why did we decide on these particular cosine expressions? The answer is because of trigonometric identities, and our observations in (b2) above. To see more clearly how
does its job (retrieves a[1] for WAAA), look again at
> (-4/Pi)*Int(f(t)*cos(9*t),t=0..Pi);
Notice that if we distribute all the products we have lots of products of sine terms with
, 7 to be exact. But each of these products can be rewritten.
Submission (e):
Rewrite the integrand above using the trigonometric identity
, and then use our results from (b2) to argue that value of this integral is 3. Also explain why we multiplied by
to do this. Could we have multiplied by something else to do the same thing?
Submission worksheet:
>
2. Inverse trig functions and integrals.
Later on in the course, we will be computing integrals using trigonometric substitution. Actually, we have used trigonometric substitutions in the first course in calculus, but not those which involve inverse trigonometric functions. To compute
, one can make the substitution
, which converts the integral into
(valid when
). Then one can use the trigonometric identity
to convert this integral into
,
which then can be evaluated directly, giving the indefinite integral
. But now we need to convert this expression into one involving the variable
. Since
, the first term in this expression is just
. To convert the second term into an expression involving x, we use the fact that
, and the identity
(valid when
), to finally obtain the result
.
Note that this expression is valid when
lies in the first quadrant, that is, when
is between 0 and 1. Of course, Maple can evaluate this indefinite integral very simply.
> int(sqrt(1-x^2),x);
We can use the computation above to evaluate the area under the curve
, over the domain [0,1], using the fundamental theorem of calculus.
> f:=x->1/2*x*sqrt(1-x^2)+1/2*arcsin(x);f(1)-f(0);
This is no surprise, since it represents the area of a quarter circle of radius one. Maple can evaluate this integral for us directly
as well.
> int(sqrt(1-x^2),x=0..1);
Submission:
The objective of this exercise is to compute the area under the curve
, on the interval [0,1].
(a) Use the derivatives of inverse trigonometric functions to determine an indefinite integral of this function. Then use the fundamental theorem of calculus to evaluate the area.
(b) Compute this area directly by having Maple evaluate a certain definite integral.
Submission worksheet:
>
>
>