summaryrefslogtreecommitdiff
path: root/2459/CH16/EX16.6/Ex16_6.sce
blob: d68cbc564e195f23cc888c71921bb38e60f12fff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//chapter16
//example16.6
//page347

Av=100
mv=0.1

Avf=Av/(1+Av*mv)
mv=(Av/Avf-1)/Av

// fall in gain is 6dB so 20log(Av/Av1)=6
// making Av1 as subject we get
Av1=Av/exp(6*log(10)/20)
Avf_new=Av1/(1+Av1*mv)
change=100*(Avf-Avf_new)/Avf

printf("percentage change in gain = %.3f percent \n",change)

// the accurate answer is 8.297 percent but in book it is given as 8.36 percent