//Caption:Program to calculate total power in the modulated signal.
//Exa:2.9
clc;
clear;
close;
//Given:
Pc=500;//in Watts
m=0.75;//depth
Pt=Pc*(1+(m^2)/2);
printf("\n\n\t total power of modulated signal = %f W ",Pt);