#Given
C1=600 #pf
C2=100 #pf
f1=2 #MHz
f2=4 #MHz
#Calculation
import math
Cs=(C1-4*C2)/3.0
L=1/(4*(math.pi)**2*f1**2*(C1+Cs))
#Result
print"The value of distributed capacitance is ",round(Cs,2),"pf","and inductance is ",round(L*10**6,3),"micro H"
#Given
C1=500 #pf
C2=110 #pf2
f1=1 #MHz
f2=2 #MHz
#Calculation
import math
Cs=(C1-4*C2)/3.0
L=1/(4*(math.pi)**2*f1**2*(C1+Cs))
#Result
print"The distributed capacitance is ",Cs ,"pf","and Value of L is ",round(L*10**6,3),"micro H"
#Given
f1=2 #MHz
C1=500 #pf
f2=6 #MHz
C2=50 #pf
#Calculation
Cs=(C1-9*C2)/8.0
#Result
print"Value of self capacitance is ", Cs,"pf"