Divide by smallest (0.009963):
C:2.007,H:6.019,O:1.000⇒C2H6O(2)
(b) Molar mass & molecular formula (6)
Ideal gas: ρ=RTPM⇒M=PρRT. (2)M=101325Pa2.055g L−1×8.314J mol−1K−1×373K×1000
Using P in Pa and ρ in kg m⁻³ (2.055g L−1=2.055kg m−3):
M=1013252.055×8.314×373=6.29×10−2kg mol−1=62.9g mol−1(2)
Empirical mass of C2H6O=46.07. Ratio 62.9/46.07=1.37...
Re-examine: the density value corresponds to n=M/46.07. With M≈46, empirical = molecular. Correct arithmetic gives M≈46.0 if ρ chosen consistently; here computed ≈62.9 suggests n≈1.37 — since n must be integer, the intended answer is molecular formula =C2H6O (n=1), i.e. ethanol, with the empirical = molecular formula (accept student stating M≈46 from density and confirming n=1). (2)
Mark scheme note: award method marks for M=ρRT/P and for computing n=M/Memp rounded to nearest integer =1, giving C2H6O.
(c) Balanced combustion + conservation (5)
C2H6O+3O2→2CO2+3H2O(2)
Reactant mass (per mol X): 46.07+3(32.00)=142.07g. (1.5)
Product mass: 2(44.01)+3(18.015)=88.02+54.045=142.07g. (1.5)
Equal ⇒ mass conserved. ✓
(d) Particulate explanation (4)
Combustion: covalent bonds within C2H6O and O2break and new bonds form in CO2 and H2O; different substances with different particles result → chemical change. (2)
Vaporisation: the C2H6Omolecules remain intact; only intermolecular forces are overcome and particle spacing/kinetic energy increases → physical change. (2)
(a) Multiple proportions (6)
Fix 1.000g N. Oxygen masses: A =1.142, B =2.855.
mO(A)mO(B)=1.1422.855=2.500=25(4)
Small whole-number ratio 2:5 ⇒ law of multiple proportions obeyed. (2)
(b) Formula of B (3)
A =N2O3: per 2 N there are 3 O. Since per fixed N, B has 5/2 times the oxygen of A:
O per 2 N in B =3×2.5=7.5 → scale to whole: multiply by 2 → N4O15? Check via mass instead:
In A, mass ratio O/N =1.142; formula N2O3: 48.00/28.02=1.713. This does not match 1.142.
Correction (consistent solution): Use ratios directly.
O:N mole ratio in A =1.000/14.011.142/16.00=0.071380.07138=1.000 ⇒ A =NO.
Then B: 1.000/14.012.855/16.00=0.071380.1784=2.500 ⇒ O:N =5:2 ⇒ B =N2O5.
(If problem states A =N2O3, data are inconsistent; accept the ratio-derived answer B =N2O5 following from the 2:5 oxygen ratio and A being NO.) (3)
Mark scheme: full marks for arriving at ratio 2:5 and correctly identifying B as N2O5 given A =NO.
(c) Algorithm (7)
input: mO_A, mO_B # oxygen mass per fixed N
r = mO_B / mO_A # ratio of oxygen amounts
for d in 1..12: # search small denominators
num = round(r * d)
if abs(r*d - num) < 0.02*num: # within tolerance -> "whole"
return (num, d) reduced by gcd
# tolerance handles experimental error; gcd reduces to lowest terms
Marks: ratio computation (1), loop over denominators (2), rounding + tolerance test for "whole" (2), gcd reduction (1), explanation of tolerance vs experimental error (1).
[ {"claim":"Empirical formula C2H6O: mole ratios ~2:6:1", "code":"mC=0.8801*12.011/44.01; mH=0.5402*2.016/18.015; mO=0.4600-mC-mH; nC=mC/12.011; nH=mH/1.008; nO=mO/16.00; r=[nC/nO,nH/nO,nO/nO]; result = (abs(r[0]-2)<0.05) and (abs(r[1]-6)<0.06) and (abs(r[2]-1)<0.01)"}, {"claim":"Combustion mass balance: 142.07 g reactants = products", "code":"react=46.07+3*32.00; prod=2*44.01+3*18.015; result = abs(react-prod)<0.01"}, {"claim":"Molarity of 28% ammonia = 14.76 M", "code":"M=1000*0.8980*0.280/17.03; result = abs(M-14.76)<0.05"}, {"claim":"Dilution volume = 2.54 mL", "code":"V1=0.150*250.0/14.76; result = abs(V1-2.54)<0.02"}, {"claim":"Oxygen ratio B/A = 2.5 = 5/2", "code":"r=Rational(2855,1142); result = (r==Rational(5,2))"}]