This is regarding question 5.1-2 (see picture attached) from Modern digital and analog communications, Lathi & Zhi Ding (2010).
I do not understand what the behavior should be at the discontinuity (sudden jump from 1 to -1). I ran the following code on MATLAB (using simpler values):
a = 0.25;
t = -a:0.0000001:a; % time
wc = 2*pi*1e2; % carrier frequency
m = sawtooth(2*pi*5*t,0.9); % message signal
phi_am = cos(wc*t+(pi/2)*m); % phase modulated signal
plot(t,phi_am); ylim([-2 2]); hold on;
plot(t,m); hold off;
and it showed me a phase shift by $\pi$, and that is what the solution is. But I do not understand how.
Also, if some light on why must $k_p < \pi$ in part (b) then I'd appreciate it.
