#Given
a=3.56
#Calculation
import math
A=a/math.sqrt(2)
#Result
print"(a) There are 8 atmos"
print"(b) Length is",round(A,2),"A"
#Given
a=3
b=2.0
#Calculation
import math
d=math.sqrt(a/b)
#Result
print"(i) Ratio of intercepts of three axes is 1:1/2:1/3"
print"(ii) Ratio of spascing is",round(d,3)
#Given
c=8
a=3.0
#Calculation
import math
A=math.sqrt(c/a)
#Result
print"A=",round(A,3)
#Given
v=1.794*10**-28 #m**3
Kb=8.625*10**-5
T=298
A=16.65
#Calculation
import math
E=math.log(10)*A*2*Kb*T
#Result
print"Average energy required is",round(E,3),"eV"
#Given
a=560
Kb=8.625*10**-5
T=586
A=1146
#Calculation
import math
n=1.4*a/(math.log(10)*Kb*T*A)
#Result
print"Ratio is", round(n,3)