# Variables
T = 0. #C
sv = 1.0001 #cc g**-1
sv1 = 1.0907 #cc g**-1
R = 0.0242 #atm**-1 cc**-1 cal
p = 79.8 #atm
# Calculations
r = (273.2+T)*(sv-sv1)*R/p
# Results
print 'rate of change of melting point = %.4f deg atm**-1'%(r)
# Variables
T = 95.5 #C
p = 1. #atm
v = 0.0126 #cc g**-1
a = 0.0242 #cal cc**-1 atm**-1
r = 0.035 #K atm**-1
# Calculations
dH = (273.2+T)*v*a/r
# Results
print 'Heat of transition = %.1f cal g**-1'%(dH)
# Variables
T = 100. #C
j = 0.0242 #cal cc**-1 atm6-1
k = 539. #cal g**-1
p = 1664. #cc g**-1
# Calculations
r = (273.2+T)*(p-1)*j/k
# Results
print 'Rise in temperature per unit of pressure = %.1f deg atm**-1'%(r)
# Variables
T1 = 100. #C
T2 = 90. #C
p = 76. #cm of hg
H = 542*18.02 #cal mole**-1
# Calculations
p1 = p/10**((H/4.576)*((T1-T2)/((273.2+T1)*(273.2+T2))))
# Results
print 'Final vapour pressure of water = %.1f cm'%(p1)
# Variables
T = 239.05 #K
r = 0.0242 #cal cc6-1 atm**-1
Vv = 269.1 #cc g**-1
Vl = 0.7 #cc g**-1
r1 = 3.343 #cm of mercury deg6-1
p = 76. #cm
# Calculations
tbyp = r1/p
dH = T*(Vv-Vl)*tbyp*r
# Results
print 'heat of vapourisation of liquid chlorine = %.1f cal g**-1'%(dH)
# Variables
Ta = 441. #C
Tb = 882. #C
Tb1 = 1218. #C
# Calculations
Ta1 = (273+Tb1)*(Tb+273)/(273+Ta)
Tb = Ta1-273
# Results
print 'Normal boiling point of silver = %.f K'%(Ta1)
print ' Normal boiling point of silver in degrees = %.f degrees'%(Tb)
# Variables
import math
T = 40. #C
T1 = 80.1 #C
# Calculations
H = 2*(273.2+T1)
p = math.e**(-(H/(4.576*(273.2+T)))+4.59)/3.07
# Results
print 'vapour pressure = %.1f cm'%(p)
# Variables
p = 23.76 #mm
R = 0.082 #atm-lit deg**-1 mol**-1
T = 25. #C
vl = 18 #ml
p1 = 1. #atm
# Calculations
dP = 0.001*vl*p*p1/(R*(273+T))
p2 = p+dP
# Results
print 'vapour pressure = %.2f mm'%(p2)
# Note : ANSWER GIVEN IN THE TEXTBOOK IS WRONG
# Variables
T = 25. #C
R = 8.314*10**7 #ergs /mol K
st = 72. #dynes cm**-1
mv = 18. #cc mole**-1
r = 10.**-5 #cm
p = 23.76 #cm
# Calculations
p1 = p*10**(2*st*mv/(r*R*2.303*(273.2+T)))
# Results
print 'vapour pressure = %.2f mm'%(p1)