3

My text book (Communication Systems analysis and design P.334, 335) have a FM signal is

$s_{FM}(t) = A cos[2\pi[f_c+ks(t)]t+\phi]$ where k is a constant and $\phi$ is the arbitrary phase angles

then the textbook suggest

while in FM, instantaneous frequency minus carrier frequency is a linear function of s(t)

So, I try to prove the $s_{FM}(t)$ is a FM signal

The instantaneous frequency is $f(t)= \frac {d\psi}{dt}=2\pi f_c+2 \pi s'(t) t +2 \pi s(t)$

and the instantaneous carrier ferquency is $f_{carrier} (t)=\frac{d\psi_{carrier}}{dt}=\frac {d}{dt} [2 \pi f_c t + \theta]=2 \pi f_c$. Assume the carrier signal is $Asin(2 \pi f_c t + \theta)$

So, $f(t)-f_{carrier}(t)=2 \pi s'(t) t +2 \pi s(t)$.

And my problem is why the text book suggest that signal is a FM signal? Clearly, I cannot prove the signal is linear.

Samuel
  • 415
  • 2
  • 6
  • 13
  • 1
    I never noticed that it has the $s'(t)t$ term before. Interesting. – Jim Clay Feb 04 '13 at 15:32
  • There probably are a hundred textbooks with titles similar if not identical to Communication Systems analysis and design. Could you be a little more specific, e.g. include the authors' name(s), publisher, edition, etc? – Dilip Sarwate Feb 04 '13 at 15:34
  • Harold PE stern and Samy A Mahmoud are the authors, this link have my textbook link – Samuel Feb 04 '13 at 15:35
  • What you calculate as instantaneous frequency is actually the intantaneous angular frequency $\omega(t)$ and $\omega_\mathrm{carrier}$. Besides, what you've calculated is linear in s(t) as derivation is a linear operation. – Deve Feb 04 '13 at 15:37
  • What you mean is $s'(t) t$ term is linear? – Samuel Feb 04 '13 at 15:39
  • In $s(t)$, yes. See my answer. – Deve Feb 04 '13 at 15:55
  • @Samuel: I think you're confusing the terms "linear" and "first-order polynomial." The latter implies the former, but not vice versa. – Jason R Feb 04 '13 at 15:55
  • The result about instantaneous frequency being $$2\pi f_c+2 \pi s'(t) \mathbf{t} +2 \pi s(t),$$ while correctly derived from the stated formula, casts considerable doubt on the validity of the definition of the FM signal. Note that the maximum frequency deviation will increase with time! – Dilip Sarwate Feb 09 '13 at 04:19

1 Answers1

2

As you have correctly derived, the difference of carrier and instantaneous frequency is

$$ g(s(t)) = \omega(t) - \omega_\mathrm{carrier} = 2\pi k s(t) + 2\pi k s(t)'t $$

I will omit $t$ for convenience. If $g(s)$ is a linear function of $s$ it must fulfill the following condition:

$$ g(c(a + b)) = cg(a) + cg(b) $$ So here: $$ g(c(a+b)) = 2\pi k c(a + b) + 2\pi k \left[\frac{d}{dt}(c(a + b))\right]t\\ = 2\pi k c a + 2\pi k c b + 2\pi k c a' t + 2\pi k c b' t\\ = c(2\pi k a + 2\pi k a' t) + c(2\pi k b + 2\pi k b' t)\\ = cg(a) + cg(b) $$ Thus, $g(s(t))$ is indeed a linear function of $s(t)$.

Deve
  • 4,255
  • 17
  • 26
  • The awesome part is s(t) become c(a+b), then the function become linear. lol. that's cool. – Samuel Feb 04 '13 at 16:08
  • What is the function $g$? And I don't understand the first step of your "So here" proof. – Jim Clay Feb 04 '13 at 18:02
  • Samuel: We don't know whether s(t) is a linear function or not (most probably it isn't). But that's not the question. We are supposed to show that w(t) - w_c is a linear function. Namely of s(t) (and not of t). Btw, a and b are functions in t, c is a constant. That was poor notation from my side. Sorry. @JimClay g(s(t)) is w(t) - w_c as defined in the first expression and my approach is supposed to proove that g(s(t)) is a linear function of s(t) by showing that it fulfills the linearity condition. – Deve Feb 04 '13 at 18:28