#given
P=2000e3;
V=400;
r=.4;
#solution
z=V**2/(r*P);
print"the value of z= ohm",z
#given
w=314;
c=.015e-6;
#solution
l=1/(3*w**2*c);#the difference in result is due to erroneous calculation in textbook.
l=round(l*10)/100;
print"inductance = Henries",l
print"the difference in result is due to erroneous calculation in textbook."
from math import pi
#given
c1=1.5e-6;
w=2*pi*50;
L1=1/(3*c1*(w**2));
c2=.9*c1;
L2=1/(3*c2*(w**2));
c3=.95*c1;
L3=1/(3*c3*(w**2));
L1=round(L1*100)/100;
L2=round(L2*10)/10;
L3=round(L3*100)/100;
print"the inductance for 100 percent line capacitance= henries ",L1
print"for 90percent line capacitance,the inductance= henries",L2
print"for 95percent line capacitane inductance= henries",L3
#given
from math import pi,sqrt
c=.01e-6*50;
w=2*pi*50;
L=1/(3*c*(w**2));
#solution
L=round(L*100)/100;
V=33e3/sqrt(3);
I=V/(w*L);
I=round(I*1000)/1000;
I=round(I*100)/100;
R=V*I/1e3; #the difference in result is due to erroneous calculation in textbook.
print"the value of L=H and rating =kVA",L,R
print"the difference in result is due to erroneous calculation in textbook."