#Given
NA = 0.29
#Calculation
import math
critical_angle = math.asin(0.29)*180/3.14
print"The critical angle is ",round(critical_angle,2),"degree"
#Given
B_rating_Mhzkm =600*10**6
len_ft=500
#Calculation
bandwidth = B_rating_Mhzkm/(len_ft/3274.0)
#Result
print"The bandwidth of the 500 feetr segment of the cable is ",bandwidth/10**6,"MHz"
#Given
R=43*10**6
D=1200/3274.0
#Calculation
d=1/(5.0*R*D)
#Result
print"The dispersion factor is ",round(d*10**9,1),"ns/km"