import math
from __future__ import division
#initialisation of variables
a=(3/2)*100;
#RESULTS
print"Volume of O2 =",round(a,3);
import math
from __future__ import division
#initialisation of variables
a=200/122.56;
b=2.45*22.4;
#RESULTS
print"Moles =",round(a,3);
print"Volume =",round(b,3);
import math
from __future__ import division
#initialisation of variables
a=2/22.4;
b=0.179*84;
#RESULTS
print"Moles =",round(a,3);
print"Mass =",round(b,3);
import math
from __future__ import division
#initialisation of variables
p=1; #atm
v=1000; #volume in litres
t=673; #Kelvin
R=0.0821; #constant in atm-l/mole-K
#CALCULATIONS
n=(p*v)/(R*t); #calculating n
n1=6.03*159.7;
n2=12.1*55.85;
#RESULTS
print"n =",round(n,3);
print"Mass =",round(n1,3);
print"Mass of Fe =",round(n2,3);
import math
from __future__ import division
#initialisation of variables
N=14.01; #mass of N
H=1.008; #mass of H
#CALCULATIONS
m=N+(3*H); #calculating mass
moles=1/m; #cal moles
v=moles*22.4; #cal vol
v1=(1*1.32*373)/(1.2*273);
#RESULTS
print"Volume =",round(v,3);
print"V2 =",round(v1,3);
import math
from __future__ import division
#initialisation of variables
p=4; #atm
v=40; #volume in litres
t=773; #Kelvin
u=238.03; #mass of U
f=19.00; #mass of F
R=0.0821; #constant in atm-l/mole-K
#CALCULATIONS
n=(p*v)/(R*t); #calculating n
m=u+(6*f); #cal mass
m1=m*2.52;
#RESULTS
print"n =",round(n,3);
print"Mass =",round(m1,3);
import math
from __future__ import division
#initialisation of variables
p=0.263*10**5; #Pascal
v=120; #volume in m cube
t=223; #Kelvin
R=8.31; #constant
#CALCULATIONS
n=(p*v)/(R*t); #calculating n
m=n*4; #cal mass of He
#RESULTS
print"n =",round(n,3);
print"Mass of He =",round(m,3);
import math
from __future__ import division
#initialisation of variables
c=12.01;
h=1.008;
v=22.4; #vol
#CALCULATIONS
m=(2*c)+(4*h); #cal mass
d=m/v; #cal density
#RESULTS
print"Density in g/litre =",round(d,3);
import math
from __future__ import division
#initialisation of variables
p=5; #atm
v=1; #volume in litres
t=293; #Kelvin
R=0.0821; #constant in atm-l/mole-K
#CALCULATIONS
n=(p*v)/(R*t); #calculating n
m=n*32; #moles of O2
d=m/v; #cal density
#RESULTS
print"n =",round(n,3);
print"Moles of O2 =",round(m,3);
print"Density in g/litre =",round(d,3);
import math
from __future__ import division
#initialisation of variables
a=28.1/0.214;
#RESULTS
print"Molecular mass =",round(a,3);