summaryrefslogtreecommitdiff
path: root/3754/CH14/EX14.5/14_5.sce
blob: d2b7cb12badda09d4f9e94537e2fd85a6f5460c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clear//

//Variables

alpha1 = 0.975                  //common base current gain
beta1 = 200.0                   //common emitter current gain

//Calculation

beta = alpha1 / (1-alpha1)      //common emitter current gain           
alpha = beta1 / (beta1 + 1)     //common base current gain 

//Result

printf("\n Value of beta when alpha = 0.975 is  %0.3f .\nValue of alpha when beta = 200 is  %0.3f .",beta,alpha)